Skip to content

Commit

Permalink
Issue #PS-000 fix: Fixed build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
itsvick committed Sep 11, 2024
1 parent c52838d commit 1921513
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/PasswordCreate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ import React, { useState } from 'react';
import { Box, Button, TextField, Typography } from '@mui/material';
import { useTranslation } from 'react-i18next';
import { useTheme } from '@mui/material/styles';
import { Password } from '@mui/icons-material';

const PasswordCreate = ({ handleResetPassword }) => {
const PasswordCreate = ({ handleResetPassword }: any) => {
const { t } = useTranslation();
const theme = useTheme<any>();
const [showPassword, setShowPassword] = useState(false);
Expand Down

0 comments on commit 1921513

Please sign in to comment.