From 1921513947139a2cc6da1a94377783b4efd3ea26 Mon Sep 17 00:00:00 2001 From: vivek kasture Date: Wed, 11 Sep 2024 13:18:23 +0530 Subject: [PATCH] Issue #PS-000 fix: Fixed build issue --- src/components/PasswordCreate.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/PasswordCreate.tsx b/src/components/PasswordCreate.tsx index d6b96740..4ffaaea2 100644 --- a/src/components/PasswordCreate.tsx +++ b/src/components/PasswordCreate.tsx @@ -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(); const [showPassword, setShowPassword] = useState(false);