Skip to content

Commit

Permalink
feat: default search if not signed in
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinWu098 committed Jan 29, 2024
1 parent 14730f0 commit 00cef6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/antalmanac/src/components/MobileHome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const mobileContext = createContext<MobileContext>({
});

const MobileHome = () => {
const [selectedTab, setSelectedTab] = useState(1);
const [selectedTab, setSelectedTab] = useState(localStorage.getItem('userID') ? 0 : 1);
const params = useParams();

useEffect(() => {
Expand Down

0 comments on commit 00cef6d

Please sign in to comment.