Handle download link

This commit is contained in:
Eric Bailey
2025-12-15 10:13:16 -06:00
parent 348e7fa379
commit fc1e8c71c6
2 changed files with 1 additions and 3 deletions
@@ -104,8 +104,6 @@ export function ViewMatches({
match => !state.dismissedMatches.includes(match.profile.did), match => !state.dismissedMatches.includes(match.profile.did),
) )
console.log(matches)
const followableDids = matches.map(match => match.profile.did) const followableDids = matches.map(match => match.profile.did)
const [didFollowAll, setDidFollowAll] = useState(followableDids.length === 0) const [didFollowAll, setDidFollowAll] = useState(followableDids.length === 0)
+1 -1
View File
@@ -7,7 +7,7 @@ type AllNavigatableRoutes = Omit<
> >
export const router = new Router<AllNavigatableRoutes>({ export const router = new Router<AllNavigatableRoutes>({
Home: '/', Home: ['/', '/download'],
Search: '/search', Search: '/search',
Feeds: '/feeds', Feeds: '/feeds',
Notifications: '/notifications', Notifications: '/notifications',