mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-14 10:34:06 +02:00
Reduce multi-paragraph comment blocks to short two-line notes and drop history-style references; no behaviour changes.
9 lines
465 B
TypeScript
9 lines
465 B
TypeScript
// SaaS override of `@app/services/supabaseClient`: re-export the auth
|
|
// singleton so exactly one GoTrueClient (one refresh timer) exists per tab.
|
|
import type { SupabaseClient } from "@supabase/supabase-js";
|
|
import { supabase as supabaseSingleton } from "@app/auth/supabase";
|
|
|
|
// `@app/auth/supabase` throws on missing config, so the client always exists.
|
|
export const supabase: SupabaseClient | null = supabaseSingleton;
|
|
export const isSupabaseConfigured = true;
|