fix up js linting

This commit is contained in:
Cam 2024-02-14 13:49:31 -06:00
parent 6a29ac0117
commit e764103a68
No known key found for this signature in database
GPG Key ID: 367B7C7EBD84A8BD
2 changed files with 1 additions and 4 deletions

View File

@ -14,9 +14,6 @@ const ActionsTab = (props) => {
<ResetToken show={showResetTokenModal} onHide={closeResetTokenModal} user={props.user}/>
</div>
)
const returnState = () => {
setActionState("menu")
}
const renderActions = () => {
switch (actionState) {

View File

@ -1,5 +1,5 @@
import Modal from "react-bootstrap/Modal";
import { Button, Container, Form, Row } from "react-bootstrap";
import { Button } from "react-bootstrap";
import * as account from "../../../../api/account";
const ResetToken = (props) => {