A personal media tracker built on the AT Protocol opnshelf.xyz
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: fix lint

+9 -10
+2 -3
apps/mobile/app/_layout.tsx
··· 1 1 import { QueryClientProvider } from "@tanstack/react-query"; 2 2 import { Stack } from "expo-router"; 3 3 import { StatusBar } from "expo-status-bar"; 4 - import { useCallback, useEffect, useState } from "react"; 4 + import { useEffect, useState } from "react"; 5 + import { DevToolsBubble } from "react-native-react-query-devtools"; 5 6 import { SafeAreaProvider } from "react-native-safe-area-context"; 6 - 7 - import { DevToolsBubble } from "react-native-react-query-devtools"; 8 7 import { LoadingScreen } from "@/components/LoadingScreen"; 9 8 import { M3SnackbarProvider } from "@/components/ui/m3/M3Snackbar"; 10 9 import { AuthProvider, useAuth } from "@/contexts/auth";
+7 -7
apps/web/src/routes/profile.tsx
··· 134 134 </div> 135 135 </div> 136 136 137 - {/* Navigation Tabs */} 138 - <div 139 - className="flex flex-col sm:flex-row gap-2 sm:gap-4 mb-8 pb-4" 140 - style={{ 141 - borderBottom: "1px solid var(--md-sys-color-outline-variant)", 142 - }} 143 - > 137 + {/* Navigation Tabs */} 138 + <div 139 + className="flex flex-col sm:flex-row gap-2 sm:gap-4 mb-8 pb-4" 140 + style={{ 141 + borderBottom: "1px solid var(--md-sys-color-outline-variant)", 142 + }} 143 + > 144 144 <NavLink to="/profile/shelf" icon={BookOpen} label="My Shelf" /> 145 145 <NavLink to="/profile/lists" icon={List} label="My Lists" /> 146 146 <NavLink to="/profile/settings" icon={Settings} label="Settings" />