Skip to content

Commit

Permalink
fix: linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
TahaKhanAbdalli committed Aug 6, 2024
1 parent 51d6dee commit b09f3b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resources/users/UserShow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const DepartOrganisation = ({

const EditPassword = ({ handleClose, audit }: Props): React.ReactElement => {
const [showPassword, setShowPassword] = React.useState(false)
const [password, setPassword] = useState<string>('')
const [password, setPassword] = React.useState<string>('');
const [passwordError, setPasswordError] = useState('')
const { id } = useParams()
const notify = useNotify()
Expand Down

0 comments on commit b09f3b9

Please sign in to comment.