Fix TypeScript error in tests

The `backupProxySuccess` property was being assigned to the `debugInfo` object in the `testSupabaseConnection` function, but it was not defined in the type definition. This commit adds the `backupProxySuccess` property to the type definition of the `debugInfo` object to resolve the TypeScript error.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-15 12:29:07 +00:00
parent ae1db90d87
commit a55e780eec

View File

@@ -47,7 +47,8 @@ export const testSupabaseConnection = async () => {
usingProxy, usingProxy,
keyLength: supabaseKey.length, keyLength: supabaseKey.length,
browserInfo: navigator.userAgent, browserInfo: navigator.userAgent,
timestamp: new Date().toISOString() timestamp: new Date().toISOString(),
backupProxySuccess: false // 타입 오류 수정: backupProxySuccess 속성 추가
} }
}; };