Skip to content

Commit ec00b27

Browse files
committed
:chore: Remove await in load() (2446)
1 parent dafac46 commit ec00b27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

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

2121
export const load: PageServerLoad = async ({ locals }) => {
22-
return await initializeAuthForm(locals);
22+
return initializeAuthForm(locals);
2323
};
2424

2525
export const actions: Actions = {

0 commit comments

Comments
 (0)