Refactor SupabaseSettings component

The SupabaseSettings component was refactored into smaller, more manageable components to improve code organization and maintainability. The UI and functionality remain unchanged.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-15 12:24:40 +00:00
parent 1623fd7738
commit 6de30b681a
5 changed files with 335 additions and 270 deletions

View File

@@ -34,7 +34,7 @@ try {
console.log('Supabase fetch 요청:', url);
// 기본 fetch 호출
return fetch(...args)
return fetch(urlOrRequest, args[1])
.then(response => {
console.log('Supabase 응답 상태:', response.status);
return response;