From 4fe07bc717a7889614b2f71b7480159e38c8615c Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 4 Oct 2025 21:42:43 +0000 Subject: [PATCH] Simplify interest methods cgen-174172ff7b4446069ddbb1192c503f53 --- client/lib/aethex-database-adapter.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/client/lib/aethex-database-adapter.ts b/client/lib/aethex-database-adapter.ts index a26ee521..11219dd5 100644 --- a/client/lib/aethex-database-adapter.ts +++ b/client/lib/aethex-database-adapter.ts @@ -423,11 +423,6 @@ export const aethexUserService = { }, async addUserInterests(userId: string, interests: string[]): Promise { - if (!isSupabaseConfigured) { - fallbackInterests.set(userId, Array.from(new Set(interests))); - return; - } - ensureSupabase(); await supabase @@ -456,10 +451,6 @@ export const aethexUserService = { }, async getUserInterests(userId: string): Promise { - if (!isSupabaseConfigured) { - return fallbackInterests.get(userId) ?? []; - } - ensureSupabase(); const { data, error } = await supabase