aboutsummaryrefslogtreecommitdiffstats
path: root/frontend-vanilla/src
diff options
context:
space:
mode:
Diffstat (limited to 'frontend-vanilla/src')
-rw-r--r--frontend-vanilla/src/mobile-overflow.test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend-vanilla/src/mobile-overflow.test.ts b/frontend-vanilla/src/mobile-overflow.test.ts
index ec421d5..516d787 100644
--- a/frontend-vanilla/src/mobile-overflow.test.ts
+++ b/frontend-vanilla/src/mobile-overflow.test.ts
@@ -52,7 +52,7 @@ describe('Mobile horizontal overflow prevention', () => {
);
expect(itemDescBlock).not.toBeNull();
const mainBlock = itemDescBlock!.find(
- block => !block.includes('img') && !block.includes('video') && !block.includes('pre') && !block.includes(' a')
+ (block: string) => !block.includes('img') && !block.includes('video') && !block.includes('pre') && !block.includes(' a')
);
expect(mainBlock).toBeDefined();
expect(mainBlock).toMatch(/overflow-x:\s*hidden/);