mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-28 10:26:33 +02:00
chore: frontend linting
This commit is contained in:
parent
f67ff41790
commit
80f83e32c6
14 changed files with 106 additions and 100 deletions
|
|
@ -28,7 +28,10 @@ export function NotificationButton() {
|
|||
const stored = localStorage.getItem(NOTIFICATION_FILTER_STORAGE_KEY);
|
||||
if (stored) {
|
||||
const parsed = JSON.parse(stored);
|
||||
if (parsed === null || ["new_mention", "connector_indexing", "document_processing"].includes(parsed)) {
|
||||
if (
|
||||
parsed === null ||
|
||||
["new_mention", "connector_indexing", "document_processing"].includes(parsed)
|
||||
) {
|
||||
setActiveFilter(parsed);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue