add route to FirmwareUpdate page

pull/120/head
Szymon Lesisz 6 years ago committed by Szymon Lesisz
parent 9d7161a294
commit 12dab6e3bc

@ -47,6 +47,11 @@ export const routes: Array<Route> = [
pattern: '/device/:device/initialize',
fields: ['device', 'initialize'],
},
{
name: 'wallet-firmware-update',
pattern: '/device/:device/firmware-update',
fields: ['device', 'firmware-update'],
},
{
name: 'wallet-device-settings',
pattern: '/device/:device/settings',

@ -43,6 +43,7 @@ const App = () => (
<Route exact path={getPattern('wallet-unreadable')} component={WalletUnreadableDevice} />
<Route exact path={getPattern('wallet-bootloader')} component={WalletBootloader} />
<Route exact path={getPattern('wallet-initialize')} component={WalletInitialize} />
<Route exact path={getPattern('wallet-firmware-update')} component={WalletFirmwareUpdate} />
<Route exact path={getPattern('wallet-device-settings')} component={WalletDeviceSettings} />
<Route exact path={getPattern('wallet-account-summary')} component={AccountSummary} />
<Route path={getPattern('wallet-account-send')} component={AccountSend} />

Loading…
Cancel
Save