mirror of
https://github.com/open-reception/appointment-booking-software.git
synced 2026-09-27 19:24:49 +02:00
9 lines
198 B
TypeScript
9 lines
198 B
TypeScript
import type { LayoutServerLoad } from "./$types";
|
|
|
|
export const load: LayoutServerLoad = async ({ locals }) => {
|
|
return {
|
|
locale: locals.locale,
|
|
passkeyId: locals.user?.passkeyId,
|
|
};
|
|
};
|