diff --git a/apps/expo/scripts/pre-install.sh b/apps/expo/scripts/pre-install.sh
index 4bf155e2d..a8c5b2e84 100755
--- a/apps/expo/scripts/pre-install.sh
+++ b/apps/expo/scripts/pre-install.sh
@@ -1,5 +1,5 @@
#!/bin/bash
if [[ "$EAS_BUILD_RUNNER" == "eas-build" ]]; then
- npm install -g pnpm@8.7.5
+ npm install -g pnpm@8.7.6
fi
\ No newline at end of file
diff --git a/apps/expo/src/app/(tabs)/_layout.tsx b/apps/expo/src/app/(tabs)/_layout.tsx
index a3daed8f7..dabb3aadb 100644
--- a/apps/expo/src/app/(tabs)/_layout.tsx
+++ b/apps/expo/src/app/(tabs)/_layout.tsx
@@ -11,7 +11,6 @@ import {
PenBox,
SearchIcon,
UserIcon,
- View,
} from "lucide-react-native";
import { DrawerContent, DrawerProvider } from "~/components/drawer-content";
@@ -116,15 +115,8 @@ export default function AppLayout() {
name="null"
options={{
title: "Post",
- tabBarIcon() {
- return (
-
-
-
- );
+ tabBarIcon({ color }) {
+ return ;
},
}}
/>
diff --git a/apps/expo/src/components/feeds-button.tsx b/apps/expo/src/components/feeds-button.tsx
index a20b22b90..d65f72e2c 100644
--- a/apps/expo/src/components/feeds-button.tsx
+++ b/apps/expo/src/components/feeds-button.tsx
@@ -2,14 +2,19 @@ import { useCallback, useRef } from "react";
import { Dimensions, TouchableHighlight, View } from "react-native";
import Animated, { FadeInDown } from "react-native-reanimated";
import { useSafeAreaInsets } from "react-native-safe-area-context";
-import { usePathname } from "expo-router";
+import { Link, usePathname } from "expo-router";
import {
BottomSheetBackdrop,
BottomSheetModal,
BottomSheetSectionList,
} from "@gorhom/bottom-sheet";
import { useTheme } from "@react-navigation/native";
-import { CircleDotIcon, CloudIcon, CloudyIcon } from "lucide-react-native";
+import {
+ ChevronRightIcon,
+ CircleDotIcon,
+ CloudIcon,
+ CloudyIcon,
+} from "lucide-react-native";
import {
LargeRow,
@@ -24,6 +29,7 @@ import { BackButtonOverride } from "./back-button-override";
import { FeedRow } from "./feed-row";
import { ItemSeparator } from "./item-separator";
import { QueryWithoutData } from "./query-without-data";
+import { Text } from "./text";
export const FeedsButton = () => {
const theme = useTheme();
@@ -48,11 +54,15 @@ export const FeedsButton = () => {
}}
>
-
+
+ My Feeds
void }) => {
ItemSeparatorComponent={() => (
)}
- ListFooterComponent={}
+ ListFooterComponent={
+
+
+
+
+
+
+
+ Manage my feeds
+
+
+
+
+
+
+
+ }
/>
);
}
diff --git a/package.json b/package.json
index 009507e3c..5e1ec953b 100644
--- a/package.json
+++ b/package.json
@@ -18,7 +18,7 @@
"overrides": {
"@tanstack/react-query": "^4.35.3"
},
- "packageManager": "pnpm@8.7.5",
+ "packageManager": "pnpm@8.7.6",
"pnpm": {
"patchedDependencies": {
"react-native-svg@13.9.0": "patches/react-native-svg@13.9.0.patch",