Skip to content

Commit

Permalink
fix: remove ledger add more keys route, ref #4786
Browse files Browse the repository at this point in the history
  • Loading branch information
pete-watters committed May 10, 2024
1 parent 540c349 commit 74ed8e7
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 43 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import {
DeviceBusy,
UnsupportedBrowserLayout,
} from '../../generic-steps';
import { AddMoreKeysLayout } from './steps/add-more-keys';
import { ConnectLedgerRequestKeys } from './steps/connect-ledger-request-keys';

interface LedgerRequestKeysRoutesProps {
Expand All @@ -23,7 +22,6 @@ export function ledgerRequestKeysRoutes({ path, component }: LedgerRequestKeysRo
<Route path={RouteUrls.ConnectLedgerError} element={<ConnectLedgerError />} />
<Route path={RouteUrls.ConnectLedgerSuccess} element={<ConnectLedgerSuccess />} />
<Route path={RouteUrls.LedgerUnsupportedBrowser} element={<UnsupportedBrowserLayout />} />
<Route path={RouteUrls.LedgerAddMoreKeys} element={<AddMoreKeysLayout />} />
</Route>
);
}

This file was deleted.

1 change: 0 additions & 1 deletion src/shared/route-urls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ export enum RouteUrls {
LedgerUnsupportedBrowser = 'unsupported-browser',
LedgerOutdatedAppWarning = 'outdated-app-warning',
LedgerBroadcastError = 'transaction-broadcast-error',
LedgerAddMoreKeys = 'add-more-keys',
ConnectLedgerStart = 'connect-ledger',

// Active wallet routes
Expand Down

0 comments on commit 74ed8e7

Please sign in to comment.