Skip to content

Commit

Permalink
linter issue resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
TahaKhanAbdalli committed Aug 6, 2024
1 parent b09f3b9 commit 679a13a
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 @@ -218,7 +218,7 @@ const EditPassword = ({ handleClose, audit }: Props): React.ReactElement => {
)
}}
onChange={async (e) => {
const value = e.target.value;
const value = e.target.value as string;
setPassword(value);
try {
await common.validate(value);
Expand Down

0 comments on commit 679a13a

Please sign in to comment.