fix: resolve TypeScript errors in CI type-check
All checks were successful
CI / CD / test-build (push) Successful in 10m10s
CI / CD / deploy-dev (push) Successful in 1m53s
CI / CD / deploy-production (push) Has been skipped

- next.config.ts: cssChunking 'loose' → false ('loose' not in type)
- ActivityFeed.test.tsx: remove always-truthy TS2872 literal expression

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-06 12:31:09 +01:00
parent fa48610e3e
commit 34a81a6437
2 changed files with 2 additions and 2 deletions

View File

@@ -58,7 +58,7 @@ describe('ActivityFeed NaN Handling', () => {
});
it('should convert gaming.name to string safely', () => {
const validName = String('Test Game' || '');
const validName = String('Test Game');
expect(validName).toBe('Test Game');
expect(typeof validName).toBe('string');