Skip to content

Commit 5c0ceeb

Browse files
committed
fix all code (server & client)
1 parent 0a5c301 commit 5c0ceeb

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

client/src/features/auth/ui/RegisterForm/RegisterForm.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ import { memo } from 'react';
33
import { useRegisterForm } from '@/features/auth/model/hooks/useRegisterForm.ts';
44
import { Button, Checkbox, Form, Input, Typography } from '@/shared/ui';
55

6-
import styles from './RegisterForm.module.scss';
7-
86
interface RegisterFormProps {
97
onSwap: () => void;
108
}
@@ -17,7 +15,7 @@ export const RegisterForm = memo(({ onSwap }: RegisterFormProps) => {
1715
} = form;
1816

1917
return (
20-
<Form form={form} onSubmit={onSubmit} className={styles.form}>
18+
<Form form={form} onSubmit={onSubmit}>
2119
<Typography tag='h2' variant='bold_24'>
2220
Registration
2321
</Typography>

0 commit comments

Comments
 (0)