Skip to content

Commit ab9807b

Browse files
committed
Run lint:fix
1 parent dd9d8ab commit ab9807b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/Topics/List/ListPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const ListPage: React.FC = () => {
3131
if (stored === null) localStorage.setItem('hideInternalTopics', 'true');
3232
} else {
3333
// sync localStorage if URL has it set
34-
const raw = searchParams.get('hideInternal');
34+
const raw = searchParams.get('hideInternal');
3535
const norm = raw === 'true' || raw === 'false' ? raw : 'true'; // default to true if malformed
3636
localStorage.setItem('hideInternalTopics', norm);
3737
if (norm !== raw) searchParams.set('hideInternal', norm); // sync URL if malformed

0 commit comments

Comments
 (0)