Index: pages/+Layout.telefunc.ts
===================================================================
--- pages/+Layout.telefunc.ts	(revision 40ac7a920a0b08c324bf4201b03a36483cc3aad4)
+++ pages/+Layout.telefunc.ts	(revision 67dfe576d088a64527df41c04054063cbba96c6d)
@@ -4,5 +4,5 @@
 import type {Database} from "../database/drizzle/db";
 
-export async function AuthenticationState() {
+export async function onGetAuthState() {
     const context = getAuthState();
 
Index: pages/index/+Page.tsx
===================================================================
--- pages/index/+Page.tsx	(revision 40ac7a920a0b08c324bf4201b03a36483cc3aad4)
+++ pages/index/+Page.tsx	(revision 67dfe576d088a64527df41c04054063cbba96c6d)
@@ -16,5 +16,5 @@
 
 import { onGetHighestRankedBuilds, onCloneBuild } from './buildCards.telefunc';
-import { onGetApprovedBuilds } from '../+Layout.telefunc';
+import {onGetApprovedBuilds, onGetAuthState} from '../+Layout.telefunc';
 import {getAuthState} from "../../server/telefunc/ctx"; //
 
@@ -33,5 +33,5 @@
                     authData, highestRankedBuilds, commnityBuilds
                 ] = await Promise.all([
-                    getAuthState(),
+                    onGetAuthState(),
                     onGetHighestRankedBuilds({ limit: 3 }),
                     onGetApprovedBuilds({ limit: 12 })
