fix: input type fixed

This commit is contained in:
Kunal Garg
2025-04-04 12:09:17 +05:30
parent 964fb8d4f4
commit 619c0983a4

View File

@@ -149,7 +149,7 @@ export const EditProfileDetailsForm = ({ user }: { user: TUser }) => {
<div className="mt-4 space-y-2">
<Label htmlFor="reset-password">{t("auth.forgot-password.reset_password")}</Label>
<div className="flex items-center justify-between gap-2">
<Input type="text" id="reset-password" defaultValue={user.email} disabled />
<Input type="email" id="reset-password" defaultValue={user.email} disabled />
<Button
onClick={handleResetPassword}
loading={isResettingPassword}