fix: resolve TypeScript errors in CI type-check

- 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:
denshooter
2026-03-06 12:31:09 +01:00
parent fa48610e3e
commit 34a81a6437
2 changed files with 2 additions and 2 deletions
@@ -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');