Skip to content

Commit fcd6290

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent aa81c4a commit fcd6290

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

src/features/account/components/update.form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const UpdateForm = ({ user }: UpdateFormProps): JSX.Element => {
4141
}, []);
4242

4343
const onSubmit = useCallback(
44-
(values: typeof form[`values`]) => {
44+
(values: (typeof form)[`values`]) => {
4545
resetError();
4646

4747
const username = getUpdatedValue(

src/features/auth/components/auth-form/auth.form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ const AuthForm = ({ formType, toggleFormType }: AuthFormProps): JSX.Element => {
8080
);
8181

8282
const onSubmit = useCallback(
83-
(values: typeof form[`values`]) => {
83+
(values: (typeof form)[`values`]) => {
8484
resetError();
8585
if (formType === `login`) {
8686
onLogin(values);

src/styles/globals.style.css

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,18 @@ html,
22
body {
33
padding: 0;
44
margin: 0;
5-
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
6-
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
5+
font-family:
6+
-apple-system,
7+
BlinkMacSystemFont,
8+
Segoe UI,
9+
Roboto,
10+
Oxygen,
11+
Ubuntu,
12+
Cantarell,
13+
Fira Sans,
14+
Droid Sans,
15+
Helvetica Neue,
16+
sans-serif;
717
}
818

919
a {

0 commit comments

Comments
 (0)