Rename getBestDownloadLink to getBestWalletDownloadLinkAndIsMobile
This commit is contained in:
@@ -8,7 +8,7 @@ import { utils } from 'ts/utils/utils';
|
||||
export interface InstallWalletOnboardingStepProps {}
|
||||
|
||||
export const InstallWalletOnboardingStep: React.StatelessComponent<InstallWalletOnboardingStepProps> = () => {
|
||||
const [downloadLink, isOnMobile] = utils.getBestWalletDownloadLink();
|
||||
const [downloadLink, isOnMobile] = utils.getBestWalletDownloadLinkAndIsMobile();
|
||||
const followupText = isOnMobile
|
||||
? `Please revisit this site in your mobile dApp browser to continue!`
|
||||
: `Please refresh the page once you've done this to continue!`;
|
||||
|
||||
@@ -115,7 +115,7 @@ const UseDifferentWallet = (props: UseDifferentWallet) => {
|
||||
};
|
||||
|
||||
const GetWalletCallToAction = () => {
|
||||
const [downloadLink, isOnMobile] = utils.getBestWalletDownloadLink();
|
||||
const [downloadLink, isOnMobile] = utils.getBestWalletDownloadLinkAndIsMobile();
|
||||
const imageUrl = isOnMobile ? TOSHI_IMG_SRC : METAMASK_IMG_SRC;
|
||||
const text = isOnMobile ? 'Get Toshi Wallet' : 'Get MetaMask Wallet';
|
||||
return (
|
||||
|
||||
@@ -440,7 +440,7 @@ export const utils = {
|
||||
return !_.isUndefined(token.trackedTimestamp);
|
||||
},
|
||||
// Returns a [downloadLink, isOnMobile] tuple.
|
||||
getBestWalletDownloadLink(): [string, boolean] {
|
||||
getBestWalletDownloadLinkAndIsMobile(): [string, boolean] {
|
||||
const browserType = utils.getBrowserType();
|
||||
const isOnMobile = utils.isMobileOperatingSystem();
|
||||
const operatingSystem = utils.getOperatingSystem();
|
||||
|
||||
Reference in New Issue
Block a user