fix: resolve build errors in api-logger imports and React Query config
All checks were successful
Build and Push Docker Image to Gitea / build-and-push (push) Successful in 1m10s
All checks were successful
Build and Push Docker Image to Gitea / build-and-push (push) Successful in 1m10s
- Fix import of generateRequestId in events/route.ts (import from logger instead of api-logger) - Remove deprecated logger config from QueryClient (no longer supported in latest React Query) These changes resolve TypeScript compilation errors and allow the build to succeed. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -22,11 +22,6 @@ export function Providers({ children }: { children: ReactNode }) {
|
||||
retry: 1,
|
||||
},
|
||||
},
|
||||
logger: {
|
||||
log: (message) => clientLogger.debug(message),
|
||||
warn: (message) => clientLogger.warn(message),
|
||||
error: (error) => clientLogger.error('React Query error', error),
|
||||
},
|
||||
})
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user