From fc1e8c71c6abdd4d2625861ece17e88b554e9c89 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Mon, 15 Dec 2025 10:13:16 -0600 Subject: [PATCH] Handle download link --- src/components/contacts/screens/ViewMatches.tsx | 2 -- src/routes.ts | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/contacts/screens/ViewMatches.tsx b/src/components/contacts/screens/ViewMatches.tsx index 9b4ff9382c..763af7cc1f 100644 --- a/src/components/contacts/screens/ViewMatches.tsx +++ b/src/components/contacts/screens/ViewMatches.tsx @@ -104,8 +104,6 @@ export function ViewMatches({ match => !state.dismissedMatches.includes(match.profile.did), ) - console.log(matches) - const followableDids = matches.map(match => match.profile.did) const [didFollowAll, setDidFollowAll] = useState(followableDids.length === 0) diff --git a/src/routes.ts b/src/routes.ts index 614b248722..f325539c71 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -7,7 +7,7 @@ type AllNavigatableRoutes = Omit< > export const router = new Router({ - Home: '/', + Home: ['/', '/download'], Search: '/search', Feeds: '/feeds', Notifications: '/notifications',