From 9a6e2f7063d91143b897f71f4b97fbf21cba744d Mon Sep 17 00:00:00 2001 From: John Costa Date: Mon, 30 Jun 2025 21:06:49 +0100 Subject: [PATCH] fix --- src/routes/+page.ts | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 src/routes/+page.ts diff --git a/src/routes/+page.ts b/src/routes/+page.ts deleted file mode 100644 index ae69d3b..0000000 --- a/src/routes/+page.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { twitchClient } from "$lib"; -import type { PageLoad } from "./$types"; - -export const load: PageLoad = async ({ params }) => { - await twitchClient.getSubscriptionStatus(); - - return {}; -};