Skip to content

Commit c471e9f

Browse files
committed
remove dupliacte check
1 parent 2d47bd6 commit c471e9f

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

frontend/src/lib/components/FolderPicker.svelte

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,7 @@
2828
})
2929
)
3030
.filter(
31-
(x) =>
32-
x != initialFolder &&
33-
x != 'app_groups' &&
34-
x != 'app_custom' &&
35-
x != 'app_themes' &&
36-
x != 'app_custom'
31+
(x) => x != initialFolder && x != 'app_custom' && x != 'app_themes' && x != 'app_custom'
3732
)
3833
.map((x) => ({
3934
name: x,

0 commit comments

Comments
 (0)