1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-03 21:00:55 +00:00

fix unsupported firmware wiki url

This commit is contained in:
Szymon Lesisz 2019-01-03 15:41:51 +01:00
parent 96fd05676f
commit 7d9857845f

View File

@ -13,9 +13,9 @@ const getInfoUrl = (networkShortcut: ?string) => {
const urls = { const urls = {
default: 'https://wiki.trezor.io', default: 'https://wiki.trezor.io',
xrp: 'https://wiki.trezor.io/Ripple_(XRP)', xrp: 'https://wiki.trezor.io/Ripple_(XRP)',
txrp: 'https://wiki.trezor.io/Ripple_(XRP)',
}; };
return networkShortcut && urls[networkShortcut] ? urls[networkShortcut] : urls.default;
return networkShortcut ? urls[networkShortcut] : urls.default;
}; };
type Props = { type Props = {