diff --git a/apps/mobile/src/modules/entry-list/EntryListFooter.tsx b/apps/mobile/src/modules/entry-list/EntryListFooter.tsx
index 74cc50ec6..377eda155 100644
--- a/apps/mobile/src/modules/entry-list/EntryListFooter.tsx
+++ b/apps/mobile/src/modules/entry-list/EntryListFooter.tsx
@@ -1,5 +1,5 @@
import { useTranslation } from "react-i18next"
-import { Pressable, Text } from "react-native"
+import { Text, TouchableOpacity } from "react-native"
import { CheckCircleCuteReIcon } from "@/src/icons/check_circle_cute_re"
import { unreadSyncService } from "@/src/store/unread/store"
@@ -14,7 +14,7 @@ export const EntryListFooter = () => {
return (
<>
- {
if (typeof selectedView === "number") {
@@ -28,7 +28,7 @@ export const EntryListFooter = () => {
which: t("operation.mark_all_as_read_which_above"),
})}
-
+
>
)
}
@@ -38,7 +38,7 @@ export const GridEntryListFooter = () => {
const selectedView = useSelectedView()
return (
- {
if (typeof selectedView === "number") {
@@ -52,6 +52,6 @@ export const GridEntryListFooter = () => {
which: t("operation.mark_all_as_read_which_above"),
})}
-
+
)
}