aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorkamtschatka <simon.schatka@gmx.at>2024-07-01 21:32:54 +0200
committerGitHub <noreply@github.com>2024-07-01 20:32:54 +0100
commit4e70fe34742a5b4f505e61fcd236574dc5c3e265 (patch)
treebd456636c5838bacb4983d5c65f017ee02ca0233 /apps
parent9cd617055b7878048120eebd58dc2e05a9cbdfca (diff)
downloadkarakeep-4e70fe34742a5b4f505e61fcd236574dc5c3e265.tar.zst
refactor: fixed typos in BookmarkTypes (#268)
Diffstat (limited to 'apps')
-rw-r--r--apps/mobile/components/bookmarks/UpdatingBookmarkList.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/mobile/components/bookmarks/UpdatingBookmarkList.tsx b/apps/mobile/components/bookmarks/UpdatingBookmarkList.tsx
index 87f115f9..f7421740 100644
--- a/apps/mobile/components/bookmarks/UpdatingBookmarkList.tsx
+++ b/apps/mobile/components/bookmarks/UpdatingBookmarkList.tsx
@@ -47,7 +47,7 @@ export default function UpdatingBookmarkList({
<BookmarkList
bookmarks={data.pages
.flatMap((p) => p.bookmarks)
- .filter((b) => b.content.type != BookmarkTypes.UNKNWON)}
+ .filter((b) => b.content.type != BookmarkTypes.UNKNOWN)}
header={header}
onRefresh={onRefresh}
fetchNextPage={fetchNextPage}