v3: added onboarding email on account creation
This commit is contained in:
@@ -2,7 +2,12 @@ import { useLocation, useNavigate } from "react-router";
|
||||
import { useAuth } from "../hooks/useAuth.ts";
|
||||
|
||||
export type FeedTab = "hot" | "new" | "journal" | "followed";
|
||||
export const VALID_TABS = new Set<string>(["hot", "new", "journal", "followed"]);
|
||||
export const VALID_TABS = new Set<string>([
|
||||
"hot",
|
||||
"new",
|
||||
"journal",
|
||||
"followed",
|
||||
]);
|
||||
|
||||
export function FeedTabBar() {
|
||||
const location = useLocation();
|
||||
|
||||
Reference in New Issue
Block a user