Skip to content

Commit 7109d5a

Browse files
Use type declaration instead of interface
1 parent 62627dc commit 7109d5a

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

resources/js/pages/auth/reset-password.tsx

+6-5
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,19 @@ import { Input } from '@/components/ui/input';
88
import { Label } from '@/components/ui/label';
99
import AuthLayout from '@/layouts/auth-layout';
1010

11-
interface ResetPasswordProps {
12-
token: string;
13-
email: string;
14-
}
15-
1611
type ResetPasswordForm = {
1712
token: string;
1813
email: string;
1914
password: string;
2015
password_confirmation: string;
2116
};
2217

18+
interface ResetPasswordProps {
19+
token: string;
20+
email: string;
21+
}
22+
23+
2324
export default function ResetPassword({ token, email }: ResetPasswordProps) {
2425
const { data, setData, post, processing, errors, reset } = useForm<ResetPasswordForm>({
2526
token: token,

0 commit comments

Comments
 (0)