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

- 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:
2025-11-23 21:25:15 +01:00
parent 06dd1c20d0
commit 791c99097c
2 changed files with 2 additions and 7 deletions

View File

@@ -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),
},
})
);