Skip to content

Commit 77be49f

Browse files
committed
:chore: Remove await in load() (2446)
1 parent 1e4fbe4 commit 77be49f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/routes/(auth)/signup/+page.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import { HOME_PAGE } from '$lib/constants/navbar-links';
2020
import type { Actions, PageServerLoad } from './$types';
2121

2222
export const load: PageServerLoad = async ({ locals }) => {
23-
return await initializeAuthForm(locals);
23+
return initializeAuthForm(locals);
2424
};
2525

2626
// FIXME: エラー処理に共通部分があるため、リファクタリングをしましょう。

0 commit comments

Comments
 (0)