mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-23 18:11:12 -05:00
feat: Implement timeline manager
This commit is contained in:
@@ -25,7 +25,7 @@ export class AppError extends Error {
|
||||
/**
|
||||
* Check if error is a Supabase connection/API error
|
||||
*/
|
||||
function isSupabaseConnectionError(error: unknown): boolean {
|
||||
export function isSupabaseConnectionError(error: unknown): boolean {
|
||||
if (error && typeof error === 'object') {
|
||||
const supabaseError = error as { code?: string; status?: number; message?: string };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user