diff --git a/.depcheckrc.yml b/.depcheckrc.yml index 6084d59a6b30..aa2606c721e1 100644 --- a/.depcheckrc.yml +++ b/.depcheckrc.yml @@ -114,6 +114,7 @@ ignores: - 'cross-spawn' - 'expo-build-properties' - 'expo-dev-client' + - 'expo-font' ## react native - '@react-native-community/cli' diff --git a/android/app/src/main/assets/fonts/Geist Bold.otf b/android/app/src/main/assets/fonts/Geist-Bold.otf similarity index 100% rename from android/app/src/main/assets/fonts/Geist Bold.otf rename to android/app/src/main/assets/fonts/Geist-Bold.otf diff --git a/android/app/src/main/assets/fonts/Geist Bold Italic.otf b/android/app/src/main/assets/fonts/Geist-BoldItalic.otf similarity index 100% rename from android/app/src/main/assets/fonts/Geist Bold Italic.otf rename to android/app/src/main/assets/fonts/Geist-BoldItalic.otf diff --git a/android/app/src/main/assets/fonts/Geist Medium.otf b/android/app/src/main/assets/fonts/Geist-Medium.otf similarity index 100% rename from android/app/src/main/assets/fonts/Geist Medium.otf rename to android/app/src/main/assets/fonts/Geist-Medium.otf diff --git a/android/app/src/main/assets/fonts/Geist Medium Italic.otf b/android/app/src/main/assets/fonts/Geist-MediumItalic.otf similarity index 100% rename from android/app/src/main/assets/fonts/Geist Medium Italic.otf rename to android/app/src/main/assets/fonts/Geist-MediumItalic.otf diff --git a/android/app/src/main/assets/fonts/Geist Regular.otf b/android/app/src/main/assets/fonts/Geist-Regular.otf similarity index 100% rename from android/app/src/main/assets/fonts/Geist Regular.otf rename to android/app/src/main/assets/fonts/Geist-Regular.otf diff --git a/android/app/src/main/assets/fonts/Geist Regular Italic.otf b/android/app/src/main/assets/fonts/Geist-RegularItalic.otf similarity index 100% rename from android/app/src/main/assets/fonts/Geist Regular Italic.otf rename to android/app/src/main/assets/fonts/Geist-RegularItalic.otf diff --git a/android/app/src/main/assets/fonts/MM Poly Regular.otf b/android/app/src/main/assets/fonts/MMPoly-Regular.otf similarity index 100% rename from android/app/src/main/assets/fonts/MM Poly Regular.otf rename to android/app/src/main/assets/fonts/MMPoly-Regular.otf diff --git a/android/app/src/main/assets/fonts/MM Sans Bold.otf b/android/app/src/main/assets/fonts/MMSans-Bold.otf similarity index 100% rename from android/app/src/main/assets/fonts/MM Sans Bold.otf rename to android/app/src/main/assets/fonts/MMSans-Bold.otf diff --git a/android/app/src/main/assets/fonts/MM Sans Medium.otf b/android/app/src/main/assets/fonts/MMSans-Medium.otf similarity index 100% rename from android/app/src/main/assets/fonts/MM Sans Medium.otf rename to android/app/src/main/assets/fonts/MMSans-Medium.otf diff --git a/android/app/src/main/assets/fonts/MM Sans Regular.otf b/android/app/src/main/assets/fonts/MMSans-Regular.otf similarity index 100% rename from android/app/src/main/assets/fonts/MM Sans Regular.otf rename to android/app/src/main/assets/fonts/MMSans-Regular.otf diff --git a/app.config.js b/app.config.js index 9d7be89fa6cf..de4035c030a2 100644 --- a/app.config.js +++ b/app.config.js @@ -28,7 +28,6 @@ module.exports = { subdomains: '*', }, ], - 'expo-apple-authentication', [ 'expo-screen-orientation', @@ -36,6 +35,30 @@ module.exports = { initialOrientation: 'PORTRAIT', }, ], + [ + 'expo-font', + { + // NOTE: We use a simple path array for fonts. Each font file becomes a separate + // font family based on its filename (e.g., Geist-Medium.otf → 'Geist-Medium'). + // This means the fontWeight property won't automatically switch fonts - you must use + // explicit font families like 'Geist-Medium' or use fontStyles.* from common.ts. + // + // Future: We may migrate to platform-specific configuration to enable native + // fontWeight support. See: https://docs.expo.dev/develop/user-interface/fonts/ + fonts: [ + './assets/fonts/Geist-Regular.otf', + './assets/fonts/Geist-Medium.otf', + './assets/fonts/Geist-Bold.otf', + './assets/fonts/Geist-RegularItalic.otf', + './assets/fonts/Geist-MediumItalic.otf', + './assets/fonts/Geist-BoldItalic.otf', + './assets/fonts/MMSans-Regular.otf', + './assets/fonts/MMSans-Medium.otf', + './assets/fonts/MMSans-Bold.otf', + './assets/fonts/MMPoly-Regular.otf', + ], + }, + ], ], android: { package: diff --git a/app/component-library/base-components/TagBase/__snapshots__/TagBase.test.tsx.snap b/app/component-library/base-components/TagBase/__snapshots__/TagBase.test.tsx.snap index b0c0e586cf71..7700e374528c 100644 --- a/app/component-library/base-components/TagBase/__snapshots__/TagBase.test.tsx.snap +++ b/app/component-library/base-components/TagBase/__snapshots__/TagBase.test.tsx.snap @@ -55,7 +55,7 @@ exports[`TagBase should render TagBase 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/component-library/components-temp/Buttons/ButtonToggle/__snapshots__/ButtonToggle.test.tsx.snap b/app/component-library/components-temp/Buttons/ButtonToggle/__snapshots__/ButtonToggle.test.tsx.snap index 55cdc326bf7d..74067030e2f1 100644 --- a/app/component-library/components-temp/Buttons/ButtonToggle/__snapshots__/ButtonToggle.test.tsx.snap +++ b/app/component-library/components-temp/Buttons/ButtonToggle/__snapshots__/ButtonToggle.test.tsx.snap @@ -27,7 +27,7 @@ exports[`ButtonToggle renders correctly in active state 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -66,7 +66,7 @@ exports[`ButtonToggle renders correctly in inactive state 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/component-library/components-temp/CellSelectWithMenu/__snapshots__/CellSelectWithMenu.test.tsx.snap b/app/component-library/components-temp/CellSelectWithMenu/__snapshots__/CellSelectWithMenu.test.tsx.snap index 77e9becf6a1e..d42d98111a2d 100644 --- a/app/component-library/components-temp/CellSelectWithMenu/__snapshots__/CellSelectWithMenu.test.tsx.snap +++ b/app/component-library/components-temp/CellSelectWithMenu/__snapshots__/CellSelectWithMenu.test.tsx.snap @@ -212,7 +212,7 @@ exports[`CellSelectWithMenu should render with default settings correctly 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -238,7 +238,7 @@ exports[`CellSelectWithMenu should render with default settings correctly 1`] = style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -281,7 +281,7 @@ exports[`CellSelectWithMenu should render with default settings correctly 1`] = style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, diff --git a/app/component-library/components-temp/CustomSpendCap/CustomInput/__snapshots__/CustomInput.test.tsx.snap b/app/component-library/components-temp/CustomSpendCap/CustomInput/__snapshots__/CustomInput.test.tsx.snap index 2966133c5691..b0a1ba1ff21d 100644 --- a/app/component-library/components-temp/CustomSpendCap/CustomInput/__snapshots__/CustomInput.test.tsx.snap +++ b/app/component-library/components-temp/CustomSpendCap/CustomInput/__snapshots__/CustomInput.test.tsx.snap @@ -35,7 +35,7 @@ exports[`CustomInput should render correctly 1`] = ` { "color": "#121314", "flexGrow": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "letterSpacing": 0, diff --git a/app/component-library/components-temp/CustomSpendCap/__snapshots__/CustomSpendCap.test.tsx.snap b/app/component-library/components-temp/CustomSpendCap/__snapshots__/CustomSpendCap.test.tsx.snap index fa8179e3a4a3..4a34a506a265 100644 --- a/app/component-library/components-temp/CustomSpendCap/__snapshots__/CustomSpendCap.test.tsx.snap +++ b/app/component-library/components-temp/CustomSpendCap/__snapshots__/CustomSpendCap.test.tsx.snap @@ -32,7 +32,7 @@ exports[`CustomSpendCap should match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -98,7 +98,7 @@ exports[`CustomSpendCap should match snapshot 1`] = ` { "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -111,7 +111,7 @@ exports[`CustomSpendCap should match snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -163,7 +163,7 @@ exports[`CustomSpendCap should match snapshot 1`] = ` { "color": "#121314", "flexGrow": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "letterSpacing": 0, @@ -187,7 +187,7 @@ exports[`CustomSpendCap should match snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -211,7 +211,7 @@ exports[`CustomSpendCap should match snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -230,7 +230,7 @@ exports[`CustomSpendCap should match snapshot 1`] = ` { "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -243,7 +243,7 @@ exports[`CustomSpendCap should match snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/component-library/components-temp/KeyValueRow/__snapshots__/KeyValueRow.test.tsx.snap b/app/component-library/components-temp/KeyValueRow/__snapshots__/KeyValueRow.test.tsx.snap index 45a764383af8..6f5cbc66aefe 100644 --- a/app/component-library/components-temp/KeyValueRow/__snapshots__/KeyValueRow.test.tsx.snap +++ b/app/component-library/components-temp/KeyValueRow/__snapshots__/KeyValueRow.test.tsx.snap @@ -59,7 +59,7 @@ exports[`KeyValueRow Prebuilt Component KeyValueRow should render text with icon style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -115,7 +115,7 @@ exports[`KeyValueRow Prebuilt Component KeyValueRow should render text with icon style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -190,7 +190,7 @@ exports[`KeyValueRow Prebuilt Component KeyValueRow should render text with icon style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -280,7 +280,7 @@ exports[`KeyValueRow Prebuilt Component KeyValueRow should render text with icon style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -376,7 +376,7 @@ exports[`KeyValueRow Prebuilt Component KeyValueRow should render text with tool style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -453,7 +453,7 @@ exports[`KeyValueRow Prebuilt Component KeyValueRow should render text with tool style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -549,7 +549,7 @@ exports[`KeyValueRow Prebuilt Component KeyValueRow should render when there is style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -592,7 +592,7 @@ exports[`KeyValueRow Prebuilt Component KeyValueRow should render when there is style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/component-library/components-temp/MainActionButton/__snapshots__/MainActionButton.test.tsx.snap b/app/component-library/components-temp/MainActionButton/__snapshots__/MainActionButton.test.tsx.snap index a056e844cafc..02fcf6d3b39f 100644 --- a/app/component-library/components-temp/MainActionButton/__snapshots__/MainActionButton.test.tsx.snap +++ b/app/component-library/components-temp/MainActionButton/__snapshots__/MainActionButton.test.tsx.snap @@ -89,7 +89,7 @@ exports[`MainActionButton should render correctly 1`] = ` { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/component-library/components-temp/MultichainAccounts/MultichainAccountSelectorList/AccountListFooter/AccountListFooter.styles.ts b/app/component-library/components-temp/MultichainAccounts/MultichainAccountSelectorList/AccountListFooter/AccountListFooter.styles.ts index 7c4b40748e5e..1cbb7a1a1867 100644 --- a/app/component-library/components-temp/MultichainAccounts/MultichainAccountSelectorList/AccountListFooter/AccountListFooter.styles.ts +++ b/app/component-library/components-temp/MultichainAccounts/MultichainAccountSelectorList/AccountListFooter/AccountListFooter.styles.ts @@ -28,10 +28,6 @@ const createStyles = ({ theme }: { theme: Theme }) => alignItems: 'center', justifyContent: 'center', }, - buttonText: { - color: theme.colors.primary.default, - fontWeight: '500', - }, }); export default createStyles; diff --git a/app/component-library/components-temp/MultichainAccounts/MultichainAccountSelectorList/AccountListFooter/AccountListFooter.tsx b/app/component-library/components-temp/MultichainAccounts/MultichainAccountSelectorList/AccountListFooter/AccountListFooter.tsx index 39ff8b4b41da..13da8899b919 100644 --- a/app/component-library/components-temp/MultichainAccounts/MultichainAccountSelectorList/AccountListFooter/AccountListFooter.tsx +++ b/app/component-library/components-temp/MultichainAccounts/MultichainAccountSelectorList/AccountListFooter/AccountListFooter.tsx @@ -9,6 +9,7 @@ import { IconColor, Text, TextVariant, + TextColor, } from '@metamask/design-system-react-native'; import { useStyles } from '../../../../hooks'; import AnimatedSpinner, { @@ -152,7 +153,7 @@ const AccountListFooter = memo( {actionLabel} diff --git a/app/component-library/components-temp/MultichainAccounts/MultichainAccountSelectorList/MultichainAccountSelectorList.tsx b/app/component-library/components-temp/MultichainAccounts/MultichainAccountSelectorList/MultichainAccountSelectorList.tsx index 3eb38855a8e2..cf711c5e32f0 100644 --- a/app/component-library/components-temp/MultichainAccounts/MultichainAccountSelectorList/MultichainAccountSelectorList.tsx +++ b/app/component-library/components-temp/MultichainAccounts/MultichainAccountSelectorList/MultichainAccountSelectorList.tsx @@ -7,7 +7,7 @@ import React, { } from 'react'; import { View, ScrollViewProps } from 'react-native'; import { ScrollView } from 'react-native-gesture-handler'; -import { FlashList, ListRenderItem, FlashListRef } from '@shopify/flash-list'; +import { FlashList, ListRenderItem } from '@shopify/flash-list'; import { useSelector } from 'react-redux'; import { AccountGroupObject } from '@metamask/account-tree-controller'; @@ -68,7 +68,7 @@ const MultichainAccountSelectorList = ({ string | null >(null); const internalListRef = - useRef>(null); + useRef>(null); const listRefToUse = listRef || internalListRef; const selectedIdSet = useMemo( diff --git a/app/component-library/components-temp/MultichainAccounts/MultichainAccountSelectorList/MultichainAccountSelectorList.types.ts b/app/component-library/components-temp/MultichainAccounts/MultichainAccountSelectorList/MultichainAccountSelectorList.types.ts index da73fb69446f..ce753f5e496d 100644 --- a/app/component-library/components-temp/MultichainAccounts/MultichainAccountSelectorList/MultichainAccountSelectorList.types.ts +++ b/app/component-library/components-temp/MultichainAccounts/MultichainAccountSelectorList/MultichainAccountSelectorList.types.ts @@ -3,7 +3,7 @@ import { AccountWalletObject, } from '@metamask/account-tree-controller'; import { RefObject } from 'react'; -import { FlashListProps, FlashListRef } from '@shopify/flash-list'; +import { FlashListProps, FlashList } from '@shopify/flash-list'; import { AccountWalletId } from '@metamask/account-api'; /** @@ -44,7 +44,7 @@ export interface MultichainAccountSelectorListProps /** * Reference to the FlashList component */ - listRef?: RefObject>; + listRef?: RefObject>; /** * Optional boolean to show checkbox */ diff --git a/app/component-library/components-temp/MultichainAccounts/MultichainAddWalletActions/__snapshots__/MultichainAddWalletActions.test.tsx.snap b/app/component-library/components-temp/MultichainAccounts/MultichainAddWalletActions/__snapshots__/MultichainAddWalletActions.test.tsx.snap index 4ec3865a5df3..fe4cc5a7e83f 100644 --- a/app/component-library/components-temp/MultichainAccounts/MultichainAddWalletActions/__snapshots__/MultichainAddWalletActions.test.tsx.snap +++ b/app/component-library/components-temp/MultichainAccounts/MultichainAddWalletActions/__snapshots__/MultichainAddWalletActions.test.tsx.snap @@ -131,7 +131,7 @@ exports[`MultichainAddWalletActions renders correctly 1`] = ` - - @@ -242,7 +225,7 @@ exports[`MultichainAddWalletActions renders correctly 1`] = ` - - + + `; diff --git a/app/component-library/components-temp/Price/AggregatedPercentage/__snapshots__/AggregatedPercentage.test.tsx.snap b/app/component-library/components-temp/Price/AggregatedPercentage/__snapshots__/AggregatedPercentage.test.tsx.snap index 2f481ac79acb..0cb48edc5111 100644 --- a/app/component-library/components-temp/Price/AggregatedPercentage/__snapshots__/AggregatedPercentage.test.tsx.snap +++ b/app/component-library/components-temp/Price/AggregatedPercentage/__snapshots__/AggregatedPercentage.test.tsx.snap @@ -14,7 +14,7 @@ exports[`AggregatedPercentage should render correctly 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -29,7 +29,7 @@ exports[`AggregatedPercentage should render correctly 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/component-library/components-temp/Price/AggregatedPercentage/__snapshots__/AggregatedPercentageCrossChains.test.tsx.snap b/app/component-library/components-temp/Price/AggregatedPercentage/__snapshots__/AggregatedPercentageCrossChains.test.tsx.snap index 73b16cd4fb76..af30f0cf5c49 100644 --- a/app/component-library/components-temp/Price/AggregatedPercentage/__snapshots__/AggregatedPercentageCrossChains.test.tsx.snap +++ b/app/component-library/components-temp/Price/AggregatedPercentage/__snapshots__/AggregatedPercentageCrossChains.test.tsx.snap @@ -14,7 +14,7 @@ exports[`AggregatedPercentageCrossChains should match snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -29,7 +29,7 @@ exports[`AggregatedPercentageCrossChains should match snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/component-library/components-temp/Price/PercentageChange/__snapshots__/PercentageChange.test.tsx.snap b/app/component-library/components-temp/Price/PercentageChange/__snapshots__/PercentageChange.test.tsx.snap index 21238e9e1107..01af2186d162 100644 --- a/app/component-library/components-temp/Price/PercentageChange/__snapshots__/PercentageChange.test.tsx.snap +++ b/app/component-library/components-temp/Price/PercentageChange/__snapshots__/PercentageChange.test.tsx.snap @@ -7,7 +7,7 @@ exports[`PercentageChange should render correctly 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/component-library/components-temp/SegmentedControl/__snapshots__/SegmentedControl.test.tsx.snap b/app/component-library/components-temp/SegmentedControl/__snapshots__/SegmentedControl.test.tsx.snap index c4aab46e1b27..a9f5bd1f08d2 100644 --- a/app/component-library/components-temp/SegmentedControl/__snapshots__/SegmentedControl.test.tsx.snap +++ b/app/component-library/components-temp/SegmentedControl/__snapshots__/SegmentedControl.test.tsx.snap @@ -53,7 +53,7 @@ exports[`SegmentedControl Multi-select mode renders correctly with default selec style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -99,7 +99,7 @@ exports[`SegmentedControl Multi-select mode renders correctly with default selec style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -145,7 +145,7 @@ exports[`SegmentedControl Multi-select mode renders correctly with default selec style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -191,7 +191,7 @@ exports[`SegmentedControl Multi-select mode renders correctly with default selec style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -253,7 +253,7 @@ exports[`SegmentedControl Single-select mode renders correctly with default sele style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -299,7 +299,7 @@ exports[`SegmentedControl Single-select mode renders correctly with default sele style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -345,7 +345,7 @@ exports[`SegmentedControl Single-select mode renders correctly with default sele style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -391,7 +391,7 @@ exports[`SegmentedControl Single-select mode renders correctly with default sele style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/component-library/components-temp/TabBar/__snapshots__/TabBar.test.tsx.snap b/app/component-library/components-temp/TabBar/__snapshots__/TabBar.test.tsx.snap index 12d1b2fc5927..f18a431f90f3 100644 --- a/app/component-library/components-temp/TabBar/__snapshots__/TabBar.test.tsx.snap +++ b/app/component-library/components-temp/TabBar/__snapshots__/TabBar.test.tsx.snap @@ -68,7 +68,7 @@ exports[`TabBar accepts and passes through additional props with ScrollableTabVi "fontWeight": "bold", }, { - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "fontWeight": "400", "letterSpacing": 0, @@ -117,7 +117,7 @@ exports[`TabBar accepts and passes through additional props with ScrollableTabVi "fontWeight": "normal", }, { - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "fontWeight": "400", "letterSpacing": 0, @@ -156,7 +156,7 @@ exports[`TabBar accepts and passes through additional props with ScrollableTabVi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -175,7 +175,7 @@ exports[`TabBar accepts and passes through additional props with ScrollableTabVi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -257,7 +257,7 @@ exports[`TabBar renders correctly with ScrollableTabView 1`] = ` "fontWeight": "bold", }, { - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "fontWeight": "400", "letterSpacing": 0, @@ -306,7 +306,7 @@ exports[`TabBar renders correctly with ScrollableTabView 1`] = ` "fontWeight": "normal", }, { - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "fontWeight": "400", "letterSpacing": 0, @@ -345,7 +345,7 @@ exports[`TabBar renders correctly with ScrollableTabView 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -364,7 +364,7 @@ exports[`TabBar renders correctly with ScrollableTabView 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -448,7 +448,7 @@ exports[`TabBar renders correctly with custom style using ScrollableTabView 1`] "fontWeight": "bold", }, { - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "fontWeight": "400", "letterSpacing": 0, @@ -497,7 +497,7 @@ exports[`TabBar renders correctly with custom style using ScrollableTabView 1`] "fontWeight": "normal", }, { - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "fontWeight": "400", "letterSpacing": 0, @@ -536,7 +536,7 @@ exports[`TabBar renders correctly with custom style using ScrollableTabView 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -555,7 +555,7 @@ exports[`TabBar renders correctly with custom style using ScrollableTabView 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/component-library/components-temp/TagColored/TagColored.styles.ts b/app/component-library/components-temp/TagColored/TagColored.styles.ts index f10fa27a6690..52cb42f12d2c 100644 --- a/app/component-library/components-temp/TagColored/TagColored.styles.ts +++ b/app/component-library/components-temp/TagColored/TagColored.styles.ts @@ -2,6 +2,7 @@ import { StyleSheet, ViewStyle } from 'react-native'; // External dependencies. +import { fontStyles } from '../../../styles/common'; import { Theme } from '../../../util/theme/models'; // Internal dependencies. @@ -62,7 +63,7 @@ const styleSheet = (params: { style, ) as ViewStyle, text: { - fontWeight: 'bold', + ...fontStyles.bold, textTransform: 'uppercase', color: textColor, }, diff --git a/app/component-library/components-temp/TagColored/__snapshots__/TagColored.test.tsx.snap b/app/component-library/components-temp/TagColored/__snapshots__/TagColored.test.tsx.snap index 41dc28c8422a..52ba63acbae2 100644 --- a/app/component-library/components-temp/TagColored/__snapshots__/TagColored.test.tsx.snap +++ b/app/component-library/components-temp/TagColored/__snapshots__/TagColored.test.tsx.snap @@ -20,9 +20,8 @@ exports[`TagColored should render TagColored 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 12, - "fontWeight": "bold", "letterSpacing": 0.25, "lineHeight": 20, "textTransform": "uppercase", diff --git a/app/component-library/components/Avatars/AvatarGroup/__snapshots__/AvatarGroup.test.tsx.snap b/app/component-library/components/Avatars/AvatarGroup/__snapshots__/AvatarGroup.test.tsx.snap index 52ead451599e..551b609ca159 100644 --- a/app/component-library/components/Avatars/AvatarGroup/__snapshots__/AvatarGroup.test.tsx.snap +++ b/app/component-library/components/Avatars/AvatarGroup/__snapshots__/AvatarGroup.test.tsx.snap @@ -160,7 +160,7 @@ exports[`AvatarGroup should render AvatarGroup component 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/component-library/components/Banners/Banner/__snapshots__/Banner.test.tsx.snap b/app/component-library/components/Banners/Banner/__snapshots__/Banner.test.tsx.snap index 2a920dd37758..6d4f421d7ce8 100644 --- a/app/component-library/components/Banners/Banner/__snapshots__/Banner.test.tsx.snap +++ b/app/component-library/components/Banners/Banner/__snapshots__/Banner.test.tsx.snap @@ -49,7 +49,7 @@ exports[`Banner should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -63,7 +63,7 @@ exports[`Banner should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -125,7 +125,7 @@ exports[`Banner should render correctly with a close button 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -139,7 +139,7 @@ exports[`Banner should render correctly with a close button 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -176,7 +176,7 @@ exports[`Banner should render correctly with a close button 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -259,7 +259,7 @@ exports[`Banner should render correctly with a start accessory 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -281,7 +281,7 @@ exports[`Banner should render correctly with a start accessory 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -295,7 +295,7 @@ exports[`Banner should render correctly with a start accessory 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -357,7 +357,7 @@ exports[`Banner should render correctly with an action button 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -371,7 +371,7 @@ exports[`Banner should render correctly with an action button 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -408,7 +408,7 @@ exports[`Banner should render correctly with an action button 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/component-library/components/Banners/Banner/variants/BannerAlert/__snapshots__/BannerAlert.test.tsx.snap b/app/component-library/components/Banners/Banner/variants/BannerAlert/__snapshots__/BannerAlert.test.tsx.snap index 3ae6282379f6..4df2bbcd7cb1 100644 --- a/app/component-library/components/Banners/Banner/variants/BannerAlert/__snapshots__/BannerAlert.test.tsx.snap +++ b/app/component-library/components/Banners/Banner/variants/BannerAlert/__snapshots__/BannerAlert.test.tsx.snap @@ -48,7 +48,7 @@ exports[`BannerAlert should render BannerAlert 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -62,7 +62,7 @@ exports[`BannerAlert should render BannerAlert 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -81,7 +81,7 @@ exports[`BannerAlert should render BannerAlert 1`] = ` { "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -94,7 +94,7 @@ exports[`BannerAlert should render BannerAlert 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/component-library/components/Banners/Banner/variants/BannerTip/__snapshots__/BannerTip.test.tsx.snap b/app/component-library/components/Banners/Banner/variants/BannerTip/__snapshots__/BannerTip.test.tsx.snap index 69019f56f5a9..522569a3033a 100644 --- a/app/component-library/components/Banners/Banner/variants/BannerTip/__snapshots__/BannerTip.test.tsx.snap +++ b/app/component-library/components/Banners/Banner/variants/BannerTip/__snapshots__/BannerTip.test.tsx.snap @@ -53,7 +53,7 @@ exports[`BannerTip should render default settings correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -67,7 +67,7 @@ exports[`BannerTip should render default settings correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -86,7 +86,7 @@ exports[`BannerTip should render default settings correctly 1`] = ` { "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -99,7 +99,7 @@ exports[`BannerTip should render default settings correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/component-library/components/BottomSheets/BottomSheetFooter/__snapshots__/BottomSheetFooter.test.tsx.snap b/app/component-library/components/BottomSheets/BottomSheetFooter/__snapshots__/BottomSheetFooter.test.tsx.snap index 3aae8f68dcfb..ebb34ee9b156 100644 --- a/app/component-library/components/BottomSheets/BottomSheetFooter/__snapshots__/BottomSheetFooter.test.tsx.snap +++ b/app/component-library/components/BottomSheets/BottomSheetFooter/__snapshots__/BottomSheetFooter.test.tsx.snap @@ -42,7 +42,7 @@ exports[`BottomSheetFooter should render snapshot correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -82,7 +82,7 @@ exports[`BottomSheetFooter should render snapshot correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/component-library/components/BottomSheets/BottomSheetHeader/__snapshots__/BottomSheetHeader.test.tsx.snap b/app/component-library/components/BottomSheets/BottomSheetHeader/__snapshots__/BottomSheetHeader.test.tsx.snap index 73e744408c76..c0d1e72bd2c0 100644 --- a/app/component-library/components/BottomSheets/BottomSheetHeader/__snapshots__/BottomSheetHeader.test.tsx.snap +++ b/app/component-library/components/BottomSheets/BottomSheetHeader/__snapshots__/BottomSheetHeader.test.tsx.snap @@ -27,7 +27,7 @@ exports[`BottomSheetHeader renders snapshot correctly with Compact variant 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -69,7 +69,7 @@ exports[`BottomSheetHeader renders snapshot correctly with Display variant 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -111,7 +111,7 @@ exports[`BottomSheetHeader should render snapshot correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/component-library/components/Buttons/Button/variants/ButtonLink/__snapshots__/ButtonLink.test.tsx.snap b/app/component-library/components/Buttons/Button/variants/ButtonLink/__snapshots__/ButtonLink.test.tsx.snap index 49af8fe23fda..8b7ce6cc4ade 100644 --- a/app/component-library/components/Buttons/Button/variants/ButtonLink/__snapshots__/ButtonLink.test.tsx.snap +++ b/app/component-library/components/Buttons/Button/variants/ButtonLink/__snapshots__/ButtonLink.test.tsx.snap @@ -11,7 +11,7 @@ exports[`ButtonLink should render correctly 1`] = ` { "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -24,7 +24,7 @@ exports[`ButtonLink should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/component-library/components/Cells/Cell/__snapshots__/Cell.test.tsx.snap b/app/component-library/components/Cells/Cell/__snapshots__/Cell.test.tsx.snap index d748eb99b2af..699a6b60be4f 100644 --- a/app/component-library/components/Cells/Cell/__snapshots__/Cell.test.tsx.snap +++ b/app/component-library/components/Cells/Cell/__snapshots__/Cell.test.tsx.snap @@ -189,7 +189,7 @@ exports[`Cell should render CellDisplay given the type Display 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -205,7 +205,7 @@ exports[`Cell should render CellDisplay given the type Display 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -220,7 +220,7 @@ exports[`Cell should render CellDisplay given the type Display 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -246,7 +246,7 @@ exports[`Cell should render CellDisplay given the type Display 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -498,7 +498,7 @@ exports[`Cell should render CellMultiSelect given the type MultiSelect 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -514,7 +514,7 @@ exports[`Cell should render CellMultiSelect given the type MultiSelect 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -529,7 +529,7 @@ exports[`Cell should render CellMultiSelect given the type MultiSelect 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -555,7 +555,7 @@ exports[`Cell should render CellMultiSelect given the type MultiSelect 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -819,7 +819,7 @@ exports[`Cell should render CellMultiSelectWithMenu given the type MultiSelectWi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -847,7 +847,7 @@ exports[`Cell should render CellMultiSelectWithMenu given the type MultiSelectWi style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -1101,7 +1101,7 @@ exports[`Cell should render CellSelect given the type Select 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1117,7 +1117,7 @@ exports[`Cell should render CellSelect given the type Select 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1132,7 +1132,7 @@ exports[`Cell should render CellSelect given the type Select 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1158,7 +1158,7 @@ exports[`Cell should render CellSelect given the type Select 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -1387,7 +1387,7 @@ exports[`Cell should render CellSelectWithMenu given the type SelectWithMenu 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1413,7 +1413,7 @@ exports[`Cell should render CellSelectWithMenu given the type SelectWithMenu 1`] style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1456,7 +1456,7 @@ exports[`Cell should render CellSelectWithMenu given the type SelectWithMenu 1`] style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, diff --git a/app/component-library/components/Cells/Cell/foundation/CellBase/__snapshots__/CellBase.test.tsx.snap b/app/component-library/components/Cells/Cell/foundation/CellBase/__snapshots__/CellBase.test.tsx.snap index cd741e413e20..4aaa793a9322 100644 --- a/app/component-library/components/Cells/Cell/foundation/CellBase/__snapshots__/CellBase.test.tsx.snap +++ b/app/component-library/components/Cells/Cell/foundation/CellBase/__snapshots__/CellBase.test.tsx.snap @@ -166,7 +166,7 @@ exports[`CellBase should render default settings correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -182,7 +182,7 @@ exports[`CellBase should render default settings correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -197,7 +197,7 @@ exports[`CellBase should render default settings correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -223,7 +223,7 @@ exports[`CellBase should render default settings correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, diff --git a/app/component-library/components/Cells/Cell/variants/CellDisplay/__snapshots__/CellDisplay.test.tsx.snap b/app/component-library/components/Cells/Cell/variants/CellDisplay/__snapshots__/CellDisplay.test.tsx.snap index fa184d14a60d..2d1de28b5ef8 100644 --- a/app/component-library/components/Cells/Cell/variants/CellDisplay/__snapshots__/CellDisplay.test.tsx.snap +++ b/app/component-library/components/Cells/Cell/variants/CellDisplay/__snapshots__/CellDisplay.test.tsx.snap @@ -189,7 +189,7 @@ exports[`CellDisplay should render default settings correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -205,7 +205,7 @@ exports[`CellDisplay should render default settings correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -220,7 +220,7 @@ exports[`CellDisplay should render default settings correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -246,7 +246,7 @@ exports[`CellDisplay should render default settings correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, diff --git a/app/component-library/components/Cells/Cell/variants/CellMultiSelect/__snapshots__/CellMultiSelect.test.tsx.snap b/app/component-library/components/Cells/Cell/variants/CellMultiSelect/__snapshots__/CellMultiSelect.test.tsx.snap index ef685f9d4230..f6451c658e5d 100644 --- a/app/component-library/components/Cells/Cell/variants/CellMultiSelect/__snapshots__/CellMultiSelect.test.tsx.snap +++ b/app/component-library/components/Cells/Cell/variants/CellMultiSelect/__snapshots__/CellMultiSelect.test.tsx.snap @@ -237,7 +237,7 @@ exports[`CellMultiSelect should render default settings correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -253,7 +253,7 @@ exports[`CellMultiSelect should render default settings correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -268,7 +268,7 @@ exports[`CellMultiSelect should render default settings correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -294,7 +294,7 @@ exports[`CellMultiSelect should render default settings correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, diff --git a/app/component-library/components/Cells/Cell/variants/CellSelect/__snapshots__/CellSelect.test.tsx.snap b/app/component-library/components/Cells/Cell/variants/CellSelect/__snapshots__/CellSelect.test.tsx.snap index 41b76f995616..c4c0d271d9f4 100644 --- a/app/component-library/components/Cells/Cell/variants/CellSelect/__snapshots__/CellSelect.test.tsx.snap +++ b/app/component-library/components/Cells/Cell/variants/CellSelect/__snapshots__/CellSelect.test.tsx.snap @@ -195,7 +195,7 @@ exports[`CellSelect should render default settings correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -211,7 +211,7 @@ exports[`CellSelect should render default settings correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -226,7 +226,7 @@ exports[`CellSelect should render default settings correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -252,7 +252,7 @@ exports[`CellSelect should render default settings correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, diff --git a/app/component-library/components/Form/TextField/foundation/Input/__snapshots__/Input.test.tsx.snap b/app/component-library/components/Form/TextField/foundation/Input/__snapshots__/Input.test.tsx.snap index 0db3a5186130..7bfe02b1acf1 100644 --- a/app/component-library/components/Form/TextField/foundation/Input/__snapshots__/Input.test.tsx.snap +++ b/app/component-library/components/Form/TextField/foundation/Input/__snapshots__/Input.test.tsx.snap @@ -12,7 +12,7 @@ exports[`Input should render correctly 1`] = ` "borderColor": "#4459ff", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 24, diff --git a/app/component-library/components/HeaderBase/__snapshots__/HeaderBase.test.tsx.snap b/app/component-library/components/HeaderBase/__snapshots__/HeaderBase.test.tsx.snap index d9418a886373..277cc7e40484 100644 --- a/app/component-library/components/HeaderBase/__snapshots__/HeaderBase.test.tsx.snap +++ b/app/component-library/components/HeaderBase/__snapshots__/HeaderBase.test.tsx.snap @@ -26,7 +26,7 @@ exports[`HeaderBase should render snapshot correctly with Compact variant 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -67,7 +67,7 @@ exports[`HeaderBase variant functionality renders snapshot correctly with Compac style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -108,7 +108,7 @@ exports[`HeaderBase variant functionality renders snapshot correctly with Displa style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, diff --git a/app/component-library/components/Navigation/TabBar/__snapshots__/TabBar.test.tsx.snap b/app/component-library/components/Navigation/TabBar/__snapshots__/TabBar.test.tsx.snap index c7af41e8c302..f0d06e17f52e 100644 --- a/app/component-library/components/Navigation/TabBar/__snapshots__/TabBar.test.tsx.snap +++ b/app/component-library/components/Navigation/TabBar/__snapshots__/TabBar.test.tsx.snap @@ -120,7 +120,7 @@ exports[`TabBar renders correctly 1`] = ` { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -230,7 +230,7 @@ exports[`TabBar renders correctly 1`] = ` { "color": "#686e7d", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -340,7 +340,7 @@ exports[`TabBar renders correctly 1`] = ` { "color": "#686e7d", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -450,7 +450,7 @@ exports[`TabBar renders correctly 1`] = ` { "color": "#686e7d", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -560,7 +560,7 @@ exports[`TabBar renders correctly 1`] = ` { "color": "#686e7d", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, diff --git a/app/component-library/components/Navigation/TradeTabBarItem/__snapshots__/TradeTabBarItem.test.tsx.snap b/app/component-library/components/Navigation/TradeTabBarItem/__snapshots__/TradeTabBarItem.test.tsx.snap index a743e6c4b758..05db5eb4240f 100644 --- a/app/component-library/components/Navigation/TradeTabBarItem/__snapshots__/TradeTabBarItem.test.tsx.snap +++ b/app/component-library/components/Navigation/TradeTabBarItem/__snapshots__/TradeTabBarItem.test.tsx.snap @@ -93,7 +93,7 @@ exports[`TradeTabBarItem renders TradeTabBarItem with icon and label 1`] = ` { "color": "#686e7d", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, diff --git a/app/component-library/components/Pickers/PickerAccount/__snapshots__/PickerAccount.test.tsx.snap b/app/component-library/components/Pickers/PickerAccount/__snapshots__/PickerAccount.test.tsx.snap index 943f2c50812a..829e640393df 100644 --- a/app/component-library/components/Pickers/PickerAccount/__snapshots__/PickerAccount.test.tsx.snap +++ b/app/component-library/components/Pickers/PickerAccount/__snapshots__/PickerAccount.test.tsx.snap @@ -32,7 +32,7 @@ exports[`PickerAccount Props Forwarding forwards hitSlop prop to PickerBase 1`] style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -84,7 +84,7 @@ exports[`PickerAccount Props Forwarding forwards style prop 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -135,7 +135,7 @@ exports[`PickerAccount Rendering should render correctly with snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/component-library/components/Pickers/PickerNetwork/__snapshots__/PickerNetwork.test.tsx.snap b/app/component-library/components/Pickers/PickerNetwork/__snapshots__/PickerNetwork.test.tsx.snap index 13ed20c8b9a7..ffbe04ad266e 100644 --- a/app/component-library/components/Pickers/PickerNetwork/__snapshots__/PickerNetwork.test.tsx.snap +++ b/app/component-library/components/Pickers/PickerNetwork/__snapshots__/PickerNetwork.test.tsx.snap @@ -59,7 +59,7 @@ exports[`PickerNetwork renders correctly 1`] = ` { "color": "#121314", "flexShrink": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/component-library/components/Select/SelectButton/__snapshots__/SelectButton.test.tsx.snap b/app/component-library/components/Select/SelectButton/__snapshots__/SelectButton.test.tsx.snap index 6c32e6104fd5..ef3d46253259 100644 --- a/app/component-library/components/Select/SelectButton/__snapshots__/SelectButton.test.tsx.snap +++ b/app/component-library/components/Select/SelectButton/__snapshots__/SelectButton.test.tsx.snap @@ -90,7 +90,7 @@ exports[`SelectButton should render snapshot correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -105,7 +105,7 @@ exports[`SelectButton should render snapshot correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/component-library/components/Select/SelectButton/foundation/__snapshots__/SelectButtonBase.test.tsx.snap b/app/component-library/components/Select/SelectButton/foundation/__snapshots__/SelectButtonBase.test.tsx.snap index ad91b100ad32..d22cf830fca8 100644 --- a/app/component-library/components/Select/SelectButton/foundation/__snapshots__/SelectButtonBase.test.tsx.snap +++ b/app/component-library/components/Select/SelectButton/foundation/__snapshots__/SelectButtonBase.test.tsx.snap @@ -81,7 +81,7 @@ exports[`SelectButtonBase should render snapshot correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -96,7 +96,7 @@ exports[`SelectButtonBase should render snapshot correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/component-library/components/Select/SelectOption/__snapshots__/SelectOption.test.tsx.snap b/app/component-library/components/Select/SelectOption/__snapshots__/SelectOption.test.tsx.snap index 1cd117e70415..6a32bc805947 100644 --- a/app/component-library/components/Select/SelectOption/__snapshots__/SelectOption.test.tsx.snap +++ b/app/component-library/components/Select/SelectOption/__snapshots__/SelectOption.test.tsx.snap @@ -99,7 +99,7 @@ exports[`SelectOption should render snapshot correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -114,7 +114,7 @@ exports[`SelectOption should render snapshot correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/component-library/components/Select/SelectValue/__snapshots__/SelectValue.test.tsx.snap b/app/component-library/components/Select/SelectValue/__snapshots__/SelectValue.test.tsx.snap index ce0d527319df..53987354f29f 100644 --- a/app/component-library/components/Select/SelectValue/__snapshots__/SelectValue.test.tsx.snap +++ b/app/component-library/components/Select/SelectValue/__snapshots__/SelectValue.test.tsx.snap @@ -70,7 +70,7 @@ exports[`SelectValue should render snapshot correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -85,7 +85,7 @@ exports[`SelectValue should render snapshot correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/component-library/components/Tags/Tag/__snapshots__/Tag.test.tsx.snap b/app/component-library/components/Tags/Tag/__snapshots__/Tag.test.tsx.snap index 918038fcd2b1..3034c8023958 100644 --- a/app/component-library/components/Tags/Tag/__snapshots__/Tag.test.tsx.snap +++ b/app/component-library/components/Tags/Tag/__snapshots__/Tag.test.tsx.snap @@ -17,7 +17,7 @@ exports[`Tag should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, diff --git a/app/component-library/components/Texts/SensitiveText/__snapshots__/SensitiveText.test.tsx.snap b/app/component-library/components/Texts/SensitiveText/__snapshots__/SensitiveText.test.tsx.snap index f4f4e7c7051e..6efc3416efb4 100644 --- a/app/component-library/components/Texts/SensitiveText/__snapshots__/SensitiveText.test.tsx.snap +++ b/app/component-library/components/Texts/SensitiveText/__snapshots__/SensitiveText.test.tsx.snap @@ -6,7 +6,7 @@ exports[`SensitiveText should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/component-library/components/Texts/Text/Text.utils.ts b/app/component-library/components/Texts/Text/Text.utils.ts index 0ee5495bb8fa..972c7923c927 100644 --- a/app/component-library/components/Texts/Text/Text.utils.ts +++ b/app/component-library/components/Texts/Text/Text.utils.ts @@ -1,5 +1,6 @@ import { typography } from '@metamask/design-tokens'; import { FontWeight, FontStyle, TextVariant } from './Text.types'; +import { GEIST_WEIGHT_MAPPING } from '../../../../constants/fonts'; export const getFontFamily = ( variant: TextVariant, @@ -9,23 +10,10 @@ export const getFontFamily = ( const resolvedWeight = fontWeight ?? typography[variant].fontWeight; const resolvedStyle = fontStyle ?? 'normal'; - const weightToFontSuffix: Record = - { - '100': 'Regular', - '200': 'Regular', - '300': 'Regular', - '400': 'Regular', - '500': 'Medium', - '600': 'Medium', - '700': 'Bold', - '800': 'Bold', - '900': 'Bold', - normal: 'Regular', - bold: 'Bold', - }; + const fontSuffix = + GEIST_WEIGHT_MAPPING[resolvedWeight as keyof typeof GEIST_WEIGHT_MAPPING]; + const italicSuffix = resolvedStyle === 'italic' ? '-Italic' : ''; - const fontSuffix = weightToFontSuffix[resolvedWeight as FontWeight]; - const italicSuffix = resolvedStyle === 'italic' ? ' Italic' : ''; - - return `Geist ${fontSuffix}${italicSuffix}`; + // Return PostScript name format (with hyphens) + return `Geist-${fontSuffix}${italicSuffix}`; }; diff --git a/app/component-library/components/Texts/Text/__snapshots__/Text.test.tsx.snap b/app/component-library/components/Texts/Text/__snapshots__/Text.test.tsx.snap index 3fddcfc3b8c5..f0f6d2fbcaaa 100644 --- a/app/component-library/components/Texts/Text/__snapshots__/Text.test.tsx.snap +++ b/app/component-library/components/Texts/Text/__snapshots__/Text.test.tsx.snap @@ -6,7 +6,7 @@ exports[`Text should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Base/RemoteImage/__snapshots__/index.test.tsx.snap b/app/components/Base/RemoteImage/__snapshots__/index.test.tsx.snap index 8d88fc19d70f..f0a93c3a3067 100644 --- a/app/components/Base/RemoteImage/__snapshots__/index.test.tsx.snap +++ b/app/components/Base/RemoteImage/__snapshots__/index.test.tsx.snap @@ -109,7 +109,7 @@ exports[`RemoteImage should render with Solana network badge when on Solana netw style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, "letterSpacing": 0, "lineHeight": undefined, diff --git a/app/components/Snaps/SnapUIAddressInput/__snapshots__/SnapUIAddressInput.test.tsx.snap b/app/components/Snaps/SnapUIAddressInput/__snapshots__/SnapUIAddressInput.test.tsx.snap index 05737167be90..1776737fcc8f 100644 --- a/app/components/Snaps/SnapUIAddressInput/__snapshots__/SnapUIAddressInput.test.tsx.snap +++ b/app/components/Snaps/SnapUIAddressInput/__snapshots__/SnapUIAddressInput.test.tsx.snap @@ -76,7 +76,7 @@ exports[`SnapUIAddressInput renders the matched address info in a disabled state style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -92,7 +92,7 @@ exports[`SnapUIAddressInput renders the matched address info in a disabled state style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -213,7 +213,7 @@ exports[`SnapUIAddressInput renders with an invalid CAIP Account ID 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, diff --git a/app/components/Snaps/SnapUIRenderer/__snapshots__/SnapUIRenderer.test.ts.snap b/app/components/Snaps/SnapUIRenderer/__snapshots__/SnapUIRenderer.test.ts.snap index 0147e4790e26..c6617fa1f666 100644 --- a/app/components/Snaps/SnapUIRenderer/__snapshots__/SnapUIRenderer.test.ts.snap +++ b/app/components/Snaps/SnapUIRenderer/__snapshots__/SnapUIRenderer.test.ts.snap @@ -57,7 +57,7 @@ exports[`SnapUIRenderer adds a footer if required 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "letterSpacing": 0, @@ -71,7 +71,7 @@ exports[`SnapUIRenderer adds a footer if required 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "letterSpacing": 0, @@ -140,7 +140,7 @@ exports[`SnapUIRenderer adds a footer if required 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -288,7 +288,7 @@ exports[`SnapUIRenderer prefills interactive inputs with existing state 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -447,7 +447,7 @@ exports[`SnapUIRenderer re-renders when the interface changes 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -542,7 +542,7 @@ exports[`SnapUIRenderer re-renders when the interface changes 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -700,7 +700,7 @@ exports[`SnapUIRenderer re-syncs state when the interface changes 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -794,7 +794,7 @@ exports[`SnapUIRenderer re-syncs state when the interface changes 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -880,7 +880,7 @@ exports[`SnapUIRenderer renders basic UI 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "letterSpacing": 0, @@ -894,7 +894,7 @@ exports[`SnapUIRenderer renders basic UI 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "letterSpacing": 0, @@ -1032,7 +1032,7 @@ exports[`SnapUIRenderer renders complex nested components 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1066,7 +1066,7 @@ exports[`SnapUIRenderer renders complex nested components 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1080,7 +1080,7 @@ exports[`SnapUIRenderer renders complex nested components 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1195,7 +1195,7 @@ exports[`SnapUIRenderer renders complex nested components 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1210,7 +1210,7 @@ exports[`SnapUIRenderer renders complex nested components 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1238,7 +1238,7 @@ exports[`SnapUIRenderer renders complex nested components 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1254,7 +1254,7 @@ exports[`SnapUIRenderer renders complex nested components 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1323,7 +1323,7 @@ exports[`SnapUIRenderer renders complex nested components 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1386,7 +1386,7 @@ exports[`SnapUIRenderer renders complex nested components 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1401,7 +1401,7 @@ exports[`SnapUIRenderer renders complex nested components 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1413,7 +1413,7 @@ exports[`SnapUIRenderer renders complex nested components 1`] = ` style={ { "color": "inherit", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": undefined, "letterSpacing": 0, @@ -1493,7 +1493,7 @@ exports[`SnapUIRenderer renders footers 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "letterSpacing": 0, @@ -1507,7 +1507,7 @@ exports[`SnapUIRenderer renders footers 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "letterSpacing": 0, @@ -1575,7 +1575,7 @@ exports[`SnapUIRenderer renders footers 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1638,7 +1638,7 @@ exports[`SnapUIRenderer renders footers 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1653,7 +1653,7 @@ exports[`SnapUIRenderer renders footers 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1665,7 +1665,7 @@ exports[`SnapUIRenderer renders footers 1`] = ` style={ { "color": "inherit", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": undefined, "letterSpacing": 0, @@ -1777,7 +1777,7 @@ exports[`SnapUIRenderer supports fields with multiple components 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1944,7 +1944,7 @@ exports[`SnapUIRenderer supports fields with multiple components 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -1983,7 +1983,7 @@ exports[`SnapUIRenderer supports fields with multiple components 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "fontWeight": undefined, "letterSpacing": 0, @@ -2140,7 +2140,7 @@ exports[`SnapUIRenderer supports interactive inputs 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -2226,7 +2226,7 @@ exports[`SnapUIRenderer supports the onCancel prop 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "letterSpacing": 0, @@ -2240,7 +2240,7 @@ exports[`SnapUIRenderer supports the onCancel prop 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "letterSpacing": 0, @@ -2308,7 +2308,7 @@ exports[`SnapUIRenderer supports the onCancel prop 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2371,7 +2371,7 @@ exports[`SnapUIRenderer supports the onCancel prop 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2386,7 +2386,7 @@ exports[`SnapUIRenderer supports the onCancel prop 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2398,7 +2398,7 @@ exports[`SnapUIRenderer supports the onCancel prop 1`] = ` style={ { "color": "inherit", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": undefined, "letterSpacing": 0, diff --git a/app/components/Snaps/SnapUIRenderer/components/__snapshots__/account-selector.test.ts.snap b/app/components/Snaps/SnapUIRenderer/components/__snapshots__/account-selector.test.ts.snap index c153f152b9f7..bab4c838680c 100644 --- a/app/components/Snaps/SnapUIRenderer/components/__snapshots__/account-selector.test.ts.snap +++ b/app/components/Snaps/SnapUIRenderer/components/__snapshots__/account-selector.test.ts.snap @@ -189,7 +189,7 @@ exports[`SnapUIAccountSelector renders inside a field 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Snaps/SnapUIRenderer/components/__snapshots__/address.test.ts.snap b/app/components/Snaps/SnapUIRenderer/components/__snapshots__/address.test.ts.snap index 58724b8711da..0cdc9c2c9b62 100644 --- a/app/components/Snaps/SnapUIRenderer/components/__snapshots__/address.test.ts.snap +++ b/app/components/Snaps/SnapUIRenderer/components/__snapshots__/address.test.ts.snap @@ -73,7 +73,7 @@ exports[`SnapUIAddress renders Bitcoin address 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -176,7 +176,7 @@ exports[`SnapUIAddress renders Bitcoin address with blockie 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -270,7 +270,7 @@ exports[`SnapUIAddress renders Cosmos address 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -373,7 +373,7 @@ exports[`SnapUIAddress renders Cosmos address with blockie 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -467,7 +467,7 @@ exports[`SnapUIAddress renders Ethereum address 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -570,7 +570,7 @@ exports[`SnapUIAddress renders Ethereum address with blockie 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -664,7 +664,7 @@ exports[`SnapUIAddress renders Hedera address 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -767,7 +767,7 @@ exports[`SnapUIAddress renders Hedera address with blockie 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -861,7 +861,7 @@ exports[`SnapUIAddress renders Polkadot address 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -964,7 +964,7 @@ exports[`SnapUIAddress renders Polkadot address with blockie 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1058,7 +1058,7 @@ exports[`SnapUIAddress renders Starknet address 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1161,7 +1161,7 @@ exports[`SnapUIAddress renders Starknet address with blockie 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1255,7 +1255,7 @@ exports[`SnapUIAddress renders legacy Ethereum address 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Snaps/SnapUIRenderer/components/__snapshots__/asset-selector.test.ts.snap b/app/components/Snaps/SnapUIRenderer/components/__snapshots__/asset-selector.test.ts.snap index 8e8f2a44c8c5..1f349483e56c 100644 --- a/app/components/Snaps/SnapUIRenderer/components/__snapshots__/asset-selector.test.ts.snap +++ b/app/components/Snaps/SnapUIRenderer/components/__snapshots__/asset-selector.test.ts.snap @@ -263,7 +263,7 @@ exports[`SnapUIAssetSelector should render 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -279,7 +279,7 @@ exports[`SnapUIAssetSelector should render 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -310,7 +310,7 @@ exports[`SnapUIAssetSelector should render 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -326,7 +326,7 @@ exports[`SnapUIAssetSelector should render 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/Snaps/SnapUIRenderer/components/__snapshots__/form.test.ts.snap b/app/components/Snaps/SnapUIRenderer/components/__snapshots__/form.test.ts.snap index 853cdf5724e8..03be006e0408 100644 --- a/app/components/Snaps/SnapUIRenderer/components/__snapshots__/form.test.ts.snap +++ b/app/components/Snaps/SnapUIRenderer/components/__snapshots__/form.test.ts.snap @@ -142,7 +142,7 @@ exports[`SnapUIForm will render 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -175,7 +175,7 @@ exports[`SnapUIForm will render 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "fontWeight": undefined, "letterSpacing": 0, @@ -282,7 +282,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -361,7 +361,7 @@ exports[`SnapUIForm will render with fields 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -398,7 +398,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -464,7 +464,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -490,7 +490,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -540,7 +540,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -603,7 +603,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -631,7 +631,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -721,7 +721,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -749,7 +749,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1004,7 +1004,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1125,7 +1125,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1153,7 +1153,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1243,7 +1243,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1271,7 +1271,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1328,7 +1328,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1418,7 +1418,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1433,7 +1433,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1461,7 +1461,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1477,7 +1477,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1734,7 +1734,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1854,7 +1854,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1869,7 +1869,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1897,7 +1897,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1913,7 +1913,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2004,7 +2004,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2019,7 +2019,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2047,7 +2047,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2063,7 +2063,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2118,7 +2118,7 @@ exports[`SnapUIForm will render with fields 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "fontWeight": undefined, "letterSpacing": 0, diff --git a/app/components/Snaps/SnapUIRenderer/components/__snapshots__/input.test.ts.snap b/app/components/Snaps/SnapUIRenderer/components/__snapshots__/input.test.ts.snap index a46882190079..bfd631dc0758 100644 --- a/app/components/Snaps/SnapUIRenderer/components/__snapshots__/input.test.ts.snap +++ b/app/components/Snaps/SnapUIRenderer/components/__snapshots__/input.test.ts.snap @@ -129,7 +129,7 @@ exports[`SnapUIInput handles disabled input 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -287,7 +287,7 @@ exports[`SnapUIInput renders with initial value 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, diff --git a/app/components/UI/AccountApproval/__snapshots__/index.test.tsx.snap b/app/components/UI/AccountApproval/__snapshots__/index.test.tsx.snap index 07dbb426956c..fe777c8ae1b3 100644 --- a/app/components/UI/AccountApproval/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/AccountApproval/__snapshots__/index.test.tsx.snap @@ -127,7 +127,7 @@ exports[`AccountApproval should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", } @@ -161,7 +161,7 @@ exports[`AccountApproval should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "padding": 5, "textAlign": "center", @@ -178,7 +178,7 @@ exports[`AccountApproval should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "fontWeight": "700", "letterSpacing": 0, @@ -196,7 +196,7 @@ exports[`AccountApproval should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "letterSpacing": 0, @@ -315,14 +315,14 @@ exports[`AccountApproval should render correctly 1`] = ` { "0": { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "marginRight": 2, "maxWidth": "45%", }, "1": undefined, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -351,12 +351,12 @@ exports[`AccountApproval should render correctly 1`] = ` "0": { "color": "#121314", "flexGrow": 1, - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, }, "1": undefined, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -384,12 +384,12 @@ exports[`AccountApproval should render correctly 1`] = ` "0": { "alignSelf": "flex-start", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, }, "1": undefined, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -458,7 +458,7 @@ exports[`AccountApproval should render correctly 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -519,7 +519,7 @@ exports[`AccountApproval should render correctly 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, diff --git a/app/components/UI/AccountFromToInfoCard/__snapshots__/AccountFromToInfoCard.test.tsx.snap b/app/components/UI/AccountFromToInfoCard/__snapshots__/AccountFromToInfoCard.test.tsx.snap index cbd2f090aa1b..3f6ff9d08b1c 100644 --- a/app/components/UI/AccountFromToInfoCard/__snapshots__/AccountFromToInfoCard.test.tsx.snap +++ b/app/components/UI/AccountFromToInfoCard/__snapshots__/AccountFromToInfoCard.test.tsx.snap @@ -24,7 +24,7 @@ exports[`AccountFromToInfoCard should match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -186,7 +186,7 @@ exports[`AccountFromToInfoCard should match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -209,7 +209,7 @@ exports[`AccountFromToInfoCard should match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -227,7 +227,7 @@ exports[`AccountFromToInfoCard should match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -242,7 +242,7 @@ exports[`AccountFromToInfoCard should match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -283,7 +283,7 @@ exports[`AccountFromToInfoCard should match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -415,7 +415,7 @@ exports[`AccountFromToInfoCard should match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -438,7 +438,7 @@ exports[`AccountFromToInfoCard should match snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/AccountInfoCard/__snapshots__/index.test.tsx.snap b/app/components/UI/AccountInfoCard/__snapshots__/index.test.tsx.snap index cb37f7869635..736f57c3ac30 100644 --- a/app/components/UI/AccountInfoCard/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/AccountInfoCard/__snapshots__/index.test.tsx.snap @@ -99,14 +99,14 @@ exports[`AccountInfoCard should match snapshot 1`] = ` { "0": { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "marginRight": 2, "maxWidth": "45%", }, "1": undefined, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -135,12 +135,12 @@ exports[`AccountInfoCard should match snapshot 1`] = ` "0": { "color": "#121314", "flexGrow": 1, - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, }, "1": undefined, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -168,12 +168,12 @@ exports[`AccountInfoCard should match snapshot 1`] = ` "0": { "alignSelf": "flex-start", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, }, "1": undefined, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/AccountOverview/__snapshots__/index.test.tsx.snap b/app/components/UI/AccountOverview/__snapshots__/index.test.tsx.snap index 956a6de4a25d..9ea3d060483f 100644 --- a/app/components/UI/AccountOverview/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/AccountOverview/__snapshots__/index.test.tsx.snap @@ -127,7 +127,7 @@ exports[`AccountOverview should render correctly 1`] = ` { "0": { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 24, "textAlign": "center", }, @@ -142,7 +142,7 @@ exports[`AccountOverview should render correctly 1`] = ` "borderColor": "#ffffff", }, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -171,7 +171,7 @@ exports[`AccountOverview should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.8, } diff --git a/app/components/UI/ActionView/__snapshots__/index.test.tsx.snap b/app/components/UI/ActionView/__snapshots__/index.test.tsx.snap index 754e3cc96681..d02f2180a927 100644 --- a/app/components/UI/ActionView/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/ActionView/__snapshots__/index.test.tsx.snap @@ -121,7 +121,7 @@ exports[`ActionView should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -160,7 +160,7 @@ exports[`ActionView should render correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/AddCustomToken/__snapshots__/index.test.tsx.snap b/app/components/UI/AddCustomToken/__snapshots__/index.test.tsx.snap index da7c91c5bde0..06c4734a6e29 100644 --- a/app/components/UI/AddCustomToken/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/AddCustomToken/__snapshots__/index.test.tsx.snap @@ -69,7 +69,7 @@ exports[`AddCustomToken renders correctly with required props 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -143,7 +143,7 @@ exports[`AddCustomToken renders correctly with required props 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", } } > @@ -164,7 +164,7 @@ exports[`AddCustomToken renders correctly with required props 1`] = ` "borderRadius": 8, "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "paddingHorizontal": 16, "paddingVertical": 12, } @@ -176,7 +176,7 @@ exports[`AddCustomToken renders correctly with required props 1`] = ` style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "marginTop": 0, "paddingBottom": 8, } @@ -202,7 +202,7 @@ exports[`AddCustomToken renders correctly with required props 1`] = ` "borderRadius": 12, "color": "#4459ff", "flexDirection": "row", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, "height": 48, "justifyContent": "center", @@ -221,7 +221,7 @@ exports[`AddCustomToken renders correctly with required props 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/AddCustomToken/index.js b/app/components/UI/AddCustomToken/index.js index bdce7a1d18bb..fdca77422fba 100644 --- a/app/components/UI/AddCustomToken/index.js +++ b/app/components/UI/AddCustomToken/index.js @@ -79,7 +79,7 @@ const createStyles = (colors) => }, textInputDisabled: { color: colors.text.muted, - fontWeight: 'bold', + ...fontStyles.bold, }, textInputFocus: { borderColor: colors.primary.default, diff --git a/app/components/UI/AddressInputs/__snapshots__/index.test.jsx.snap b/app/components/UI/AddressInputs/__snapshots__/index.test.jsx.snap index 3a1a71be4394..908837512691 100644 --- a/app/components/UI/AddressInputs/__snapshots__/index.test.jsx.snap +++ b/app/components/UI/AddressInputs/__snapshots__/index.test.jsx.snap @@ -24,7 +24,7 @@ exports[`AddressInputs AddressFrom should match default snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -148,7 +148,7 @@ exports[`AddressInputs AddressFrom should match default snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -163,7 +163,7 @@ exports[`AddressInputs AddressFrom should match default snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 24, @@ -201,7 +201,7 @@ exports[`AddressInputs AddressFrom should match snapshot when layout is vertical style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -325,7 +325,7 @@ exports[`AddressInputs AddressFrom should match snapshot when layout is vertical style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -340,7 +340,7 @@ exports[`AddressInputs AddressFrom should match snapshot when layout is vertical style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 24, @@ -380,7 +380,7 @@ exports[`AddressInputs AddressTo should match default snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -550,7 +550,7 @@ exports[`AddressInputs AddressTo should match default snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -573,7 +573,7 @@ exports[`AddressInputs AddressTo should match default snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 24, @@ -649,7 +649,7 @@ exports[`AddressInputs AddressTo should match snapshot when layout is vertical 1 style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -819,7 +819,7 @@ exports[`AddressInputs AddressTo should match snapshot when layout is vertical 1 style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -842,7 +842,7 @@ exports[`AddressInputs AddressTo should match snapshot when layout is vertical 1 style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/ApprovalTagUrl/__snapshots__/ApprovalTagUrl.test.tsx.snap b/app/components/UI/ApprovalTagUrl/__snapshots__/ApprovalTagUrl.test.tsx.snap index 4ed6b489e141..ecb055837e1e 100644 --- a/app/components/UI/ApprovalTagUrl/__snapshots__/ApprovalTagUrl.test.tsx.snap +++ b/app/components/UI/ApprovalTagUrl/__snapshots__/ApprovalTagUrl.test.tsx.snap @@ -55,7 +55,7 @@ exports[`ApprovalTagUrl renders correctly 1`] = ` { "color": "#686e7d", "flexShrink": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -122,7 +122,7 @@ exports[`ApprovalTagUrl renders origin when only origin is provided 1`] = ` { "color": "#686e7d", "flexShrink": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/AssetOverview/AssetOverview.styles.ts b/app/components/UI/AssetOverview/AssetOverview.styles.ts index 20e1dd0dbff0..35813d4a89d3 100644 --- a/app/components/UI/AssetOverview/AssetOverview.styles.ts +++ b/app/components/UI/AssetOverview/AssetOverview.styles.ts @@ -1,4 +1,5 @@ import type { Theme } from '@metamask/design-tokens'; +import { fontStyles } from '../../../styles/common'; import { StyleSheet, TextStyle } from 'react-native'; import { getFontFamily, @@ -58,7 +59,7 @@ const styleSheet = (params: { theme: Theme }) => { buttonText: { fontSize: 12, fontStyle: 'normal', - fontWeight: '400', + ...fontStyles.normal, lineHeight: 20, letterSpacing: 0.25, }, diff --git a/app/components/UI/AssetOverview/Balance/__snapshots__/index.test.tsx.snap b/app/components/UI/AssetOverview/Balance/__snapshots__/index.test.tsx.snap index 892cedb76123..70e7115321fa 100644 --- a/app/components/UI/AssetOverview/Balance/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/AssetOverview/Balance/__snapshots__/index.test.tsx.snap @@ -15,7 +15,7 @@ exports[`Balance should render correctly with main and secondary balance 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -181,7 +181,7 @@ exports[`Balance should render correctly with main and secondary balance 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -196,7 +196,7 @@ exports[`Balance should render correctly with main and secondary balance 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "fontWeight": "400", "letterSpacing": 0, @@ -221,7 +221,7 @@ exports[`Balance should render correctly with main and secondary balance 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -251,7 +251,7 @@ exports[`Balance should render correctly without a secondary balance 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -417,7 +417,7 @@ exports[`Balance should render correctly without a secondary balance 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -441,7 +441,7 @@ exports[`Balance should render correctly without a secondary balance 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/AssetOverview/TokenDetails/MarketDetailsList/__snapshots__/MarketDetailsList.test.tsx.snap b/app/components/UI/AssetOverview/TokenDetails/MarketDetailsList/__snapshots__/MarketDetailsList.test.tsx.snap index 9c60bb5cdc78..0841b3ac5391 100644 --- a/app/components/UI/AssetOverview/TokenDetails/MarketDetailsList/__snapshots__/MarketDetailsList.test.tsx.snap +++ b/app/components/UI/AssetOverview/TokenDetails/MarketDetailsList/__snapshots__/MarketDetailsList.test.tsx.snap @@ -7,7 +7,7 @@ exports[`MarketDetailsList should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -44,7 +44,7 @@ exports[`MarketDetailsList should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -58,7 +58,7 @@ exports[`MarketDetailsList should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -82,7 +82,7 @@ exports[`MarketDetailsList should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -96,7 +96,7 @@ exports[`MarketDetailsList should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -120,7 +120,7 @@ exports[`MarketDetailsList should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -134,7 +134,7 @@ exports[`MarketDetailsList should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -158,7 +158,7 @@ exports[`MarketDetailsList should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -172,7 +172,7 @@ exports[`MarketDetailsList should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -196,7 +196,7 @@ exports[`MarketDetailsList should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -210,7 +210,7 @@ exports[`MarketDetailsList should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -234,7 +234,7 @@ exports[`MarketDetailsList should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -248,7 +248,7 @@ exports[`MarketDetailsList should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -272,7 +272,7 @@ exports[`MarketDetailsList should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -286,7 +286,7 @@ exports[`MarketDetailsList should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/UI/AssetOverview/TokenDetails/TokenDetailsList/__snapshots__/TokenDetailsList.test.tsx.snap b/app/components/UI/AssetOverview/TokenDetails/TokenDetailsList/__snapshots__/TokenDetailsList.test.tsx.snap index 44726f25eead..6c6c7cb4993d 100644 --- a/app/components/UI/AssetOverview/TokenDetails/TokenDetailsList/__snapshots__/TokenDetailsList.test.tsx.snap +++ b/app/components/UI/AssetOverview/TokenDetails/TokenDetailsList/__snapshots__/TokenDetailsList.test.tsx.snap @@ -7,7 +7,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -44,7 +44,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -71,7 +71,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -110,7 +110,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -124,7 +124,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -153,7 +153,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -167,7 +167,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/UI/AssetOverview/TokenDetails/__snapshots__/TokenDetails.test.tsx.snap b/app/components/UI/AssetOverview/TokenDetails/__snapshots__/TokenDetails.test.tsx.snap index efa97f86db50..b59e7e6ec3c6 100644 --- a/app/components/UI/AssetOverview/TokenDetails/__snapshots__/TokenDetails.test.tsx.snap +++ b/app/components/UI/AssetOverview/TokenDetails/__snapshots__/TokenDetails.test.tsx.snap @@ -15,7 +15,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -52,7 +52,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -79,7 +79,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -118,7 +118,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -132,7 +132,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -161,7 +161,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -175,7 +175,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -193,7 +193,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -230,7 +230,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -244,7 +244,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -268,7 +268,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -282,7 +282,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -306,7 +306,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -320,7 +320,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -344,7 +344,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -358,7 +358,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -382,7 +382,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -396,7 +396,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -420,7 +420,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -434,7 +434,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -458,7 +458,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -472,7 +472,7 @@ exports[`TokenDetails should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/UI/AssetOverview/__snapshots__/AssetOverview.test.tsx.snap b/app/components/UI/AssetOverview/__snapshots__/AssetOverview.test.tsx.snap index 1b81b50867e3..18c08120d0e8 100644 --- a/app/components/UI/AssetOverview/__snapshots__/AssetOverview.test.tsx.snap +++ b/app/components/UI/AssetOverview/__snapshots__/AssetOverview.test.tsx.snap @@ -22,7 +22,7 @@ exports[`AssetOverview should render native balances when non evm network is sel style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -39,7 +39,7 @@ exports[`AssetOverview should render native balances when non evm network is sel style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -54,7 +54,7 @@ exports[`AssetOverview should render native balances when non evm network is sel style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -66,7 +66,7 @@ exports[`AssetOverview should render native balances when non evm network is sel style={ { "color": "#457a39", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -108,7 +108,7 @@ exports[`AssetOverview should render native balances when non evm network is sel style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -201,7 +201,7 @@ exports[`AssetOverview should render native balances when non evm network is sel style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -231,7 +231,7 @@ exports[`AssetOverview should render native balances when non evm network is sel style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -261,7 +261,7 @@ exports[`AssetOverview should render native balances when non evm network is sel style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -291,7 +291,7 @@ exports[`AssetOverview should render native balances when non evm network is sel style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -321,7 +321,7 @@ exports[`AssetOverview should render native balances when non evm network is sel style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -351,7 +351,7 @@ exports[`AssetOverview should render native balances when non evm network is sel style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -469,7 +469,7 @@ exports[`AssetOverview should render native balances when non evm network is sel { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -582,7 +582,7 @@ exports[`AssetOverview should render native balances when non evm network is sel { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -695,7 +695,7 @@ exports[`AssetOverview should render native balances when non evm network is sel { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -808,7 +808,7 @@ exports[`AssetOverview should render native balances when non evm network is sel { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -870,7 +870,7 @@ exports[`AssetOverview should render native balances when non evm network is sel style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -902,7 +902,7 @@ exports[`AssetOverview should render native balances when non evm network is sel style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -916,7 +916,7 @@ exports[`AssetOverview should render native balances when non evm network is sel style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/UI/AssetSearch/__snapshots__/index.test.tsx.snap b/app/components/UI/AssetSearch/__snapshots__/index.test.tsx.snap index ca9201dbd68a..989290484592 100644 --- a/app/components/UI/AssetSearch/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/AssetSearch/__snapshots__/index.test.tsx.snap @@ -60,7 +60,7 @@ exports[`AssetSearch renders correctly with allTokens 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", } } testID="input-search-asset" diff --git a/app/components/UI/BackupAlert/__snapshots__/BackupAlert.test.tsx.snap b/app/components/UI/BackupAlert/__snapshots__/BackupAlert.test.tsx.snap index c5f6d01ec67f..0f305ed54bec 100644 --- a/app/components/UI/BackupAlert/__snapshots__/BackupAlert.test.tsx.snap +++ b/app/components/UI/BackupAlert/__snapshots__/BackupAlert.test.tsx.snap @@ -78,7 +78,7 @@ exports[`BackupAlert render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -107,7 +107,7 @@ exports[`BackupAlert render matches snapshot 1`] = ` { "color": "#4459ff", "flex": 1, - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -133,7 +133,7 @@ exports[`BackupAlert render matches snapshot 1`] = ` { "color": "#4459ff", "flex": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/BasicFunctionality/BasicFunctionalityModal/__snapshots__/BasicFunctionalityModal.test.js.snap b/app/components/UI/BasicFunctionality/BasicFunctionalityModal/__snapshots__/BasicFunctionalityModal.test.js.snap index 305436120b72..b6b2d5c3a71b 100644 --- a/app/components/UI/BasicFunctionality/BasicFunctionalityModal/__snapshots__/BasicFunctionalityModal.test.js.snap +++ b/app/components/UI/BasicFunctionality/BasicFunctionalityModal/__snapshots__/BasicFunctionalityModal.test.js.snap @@ -147,7 +147,7 @@ exports[`BasicFunctionalityModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -163,7 +163,7 @@ exports[`BasicFunctionalityModal should render correctly 1`] = ` { "alignSelf": "flex-start", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -180,7 +180,7 @@ exports[`BasicFunctionalityModal should render correctly 1`] = ` { "alignSelf": "flex-start", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -197,7 +197,7 @@ exports[`BasicFunctionalityModal should render correctly 1`] = ` { "alignSelf": "flex-start", "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -215,7 +215,7 @@ exports[`BasicFunctionalityModal should render correctly 1`] = ` { "alignSelf": "flex-start", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -233,7 +233,7 @@ exports[`BasicFunctionalityModal should render correctly 1`] = ` { "alignSelf": "flex-start", "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -291,7 +291,7 @@ exports[`BasicFunctionalityModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -339,7 +339,7 @@ exports[`BasicFunctionalityModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -385,7 +385,7 @@ exports[`BasicFunctionalityModal should render correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/BasicFunctionality/__snapshots__/BasicFunctionality.test.js.snap b/app/components/UI/BasicFunctionality/__snapshots__/BasicFunctionality.test.js.snap index 63230bb678c0..bda18d1d83b7 100644 --- a/app/components/UI/BasicFunctionality/__snapshots__/BasicFunctionality.test.js.snap +++ b/app/components/UI/BasicFunctionality/__snapshots__/BasicFunctionality.test.js.snap @@ -23,7 +23,7 @@ exports[`BasicFunctionality should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -60,7 +60,7 @@ exports[`BasicFunctionality should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -74,7 +74,7 @@ exports[`BasicFunctionality should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Bridge/Views/BridgeView/__snapshots__/BridgeView.test.tsx.snap b/app/components/UI/Bridge/Views/BridgeView/__snapshots__/BridgeView.test.tsx.snap index 4cdb74dfc566..0730a6e26058 100644 --- a/app/components/UI/Bridge/Views/BridgeView/__snapshots__/BridgeView.test.tsx.snap +++ b/app/components/UI/Bridge/Views/BridgeView/__snapshots__/BridgeView.test.tsx.snap @@ -131,7 +131,7 @@ exports[`BridgeView Bottom Content blurs input when opening QuoteExpiredModal 1` - - @@ -242,7 +225,7 @@ exports[`BridgeView Bottom Content blurs input when opening QuoteExpiredModal 1` - - + + `; @@ -1972,7 +1954,7 @@ exports[`BridgeView renders 1`] = ` - - @@ -2083,7 +2048,7 @@ exports[`BridgeView renders 1`] = ` - - + + `; diff --git a/app/components/UI/Bridge/components/BridgeDestNetworkSelector/__snapshots__/BridgeDestNetworkSelector.test.tsx.snap b/app/components/UI/Bridge/components/BridgeDestNetworkSelector/__snapshots__/BridgeDestNetworkSelector.test.tsx.snap index 5b6873b749fb..747a7be85e75 100644 --- a/app/components/UI/Bridge/components/BridgeDestNetworkSelector/__snapshots__/BridgeDestNetworkSelector.test.tsx.snap +++ b/app/components/UI/Bridge/components/BridgeDestNetworkSelector/__snapshots__/BridgeDestNetworkSelector.test.tsx.snap @@ -467,7 +467,7 @@ exports[`BridgeDestNetworkSelector renders with initial state and displays netwo style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -637,7 +637,7 @@ exports[`BridgeDestNetworkSelector renders with initial state and displays netwo style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -743,7 +743,7 @@ exports[`BridgeDestNetworkSelector renders with initial state and displays netwo style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -849,7 +849,7 @@ exports[`BridgeDestNetworkSelector renders with initial state and displays netwo style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Bridge/components/BridgeDestTokenSelector/__snapshots__/BridgeDestTokenSelector.test.tsx.snap b/app/components/UI/Bridge/components/BridgeDestTokenSelector/__snapshots__/BridgeDestTokenSelector.test.tsx.snap index 642a448224a2..2bcb1aa03bde 100644 --- a/app/components/UI/Bridge/components/BridgeDestTokenSelector/__snapshots__/BridgeDestTokenSelector.test.tsx.snap +++ b/app/components/UI/Bridge/components/BridgeDestTokenSelector/__snapshots__/BridgeDestTokenSelector.test.tsx.snap @@ -467,7 +467,7 @@ exports[`BridgeDestTokenSelector renders with initial state and displays tokens style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -590,7 +590,7 @@ exports[`BridgeDestTokenSelector renders with initial state and displays tokens style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -657,7 +657,7 @@ exports[`BridgeDestTokenSelector renders with initial state and displays tokens style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -711,7 +711,7 @@ exports[`BridgeDestTokenSelector renders with initial state and displays tokens style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -765,7 +765,7 @@ exports[`BridgeDestTokenSelector renders with initial state and displays tokens style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -866,7 +866,7 @@ exports[`BridgeDestTokenSelector renders with initial state and displays tokens "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -1185,7 +1185,7 @@ exports[`BridgeDestTokenSelector renders with initial state and displays tokens style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1200,7 +1200,7 @@ exports[`BridgeDestTokenSelector renders with initial state and displays tokens style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1229,7 +1229,7 @@ exports[`BridgeDestTokenSelector renders with initial state and displays tokens style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1243,7 +1243,7 @@ exports[`BridgeDestTokenSelector renders with initial state and displays tokens style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1496,7 +1496,7 @@ exports[`BridgeDestTokenSelector renders with initial state and displays tokens style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1511,7 +1511,7 @@ exports[`BridgeDestTokenSelector renders with initial state and displays tokens style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1540,7 +1540,7 @@ exports[`BridgeDestTokenSelector renders with initial state and displays tokens style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1554,7 +1554,7 @@ exports[`BridgeDestTokenSelector renders with initial state and displays tokens style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1840,7 +1840,7 @@ exports[`BridgeDestTokenSelector renders with initial state and displays tokens style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1855,7 +1855,7 @@ exports[`BridgeDestTokenSelector renders with initial state and displays tokens style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1884,7 +1884,7 @@ exports[`BridgeDestTokenSelector renders with initial state and displays tokens style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1898,7 +1898,7 @@ exports[`BridgeDestTokenSelector renders with initial state and displays tokens style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Bridge/components/BridgeSourceNetworkSelector/__snapshots__/BridgeSourceNetworkSelector.test.tsx.snap b/app/components/UI/Bridge/components/BridgeSourceNetworkSelector/__snapshots__/BridgeSourceNetworkSelector.test.tsx.snap index aca4fccf242e..24463d70300f 100644 --- a/app/components/UI/Bridge/components/BridgeSourceNetworkSelector/__snapshots__/BridgeSourceNetworkSelector.test.tsx.snap +++ b/app/components/UI/Bridge/components/BridgeSourceNetworkSelector/__snapshots__/BridgeSourceNetworkSelector.test.tsx.snap @@ -467,7 +467,7 @@ exports[`BridgeSourceNetworkSelector renders with initial state and displays net style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -548,7 +548,7 @@ exports[`BridgeSourceNetworkSelector renders with initial state and displays net { "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -562,7 +562,7 @@ exports[`BridgeSourceNetworkSelector renders with initial state and displays net style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -738,7 +738,7 @@ exports[`BridgeSourceNetworkSelector renders with initial state and displays net style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -770,7 +770,7 @@ exports[`BridgeSourceNetworkSelector renders with initial state and displays net { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -931,7 +931,7 @@ exports[`BridgeSourceNetworkSelector renders with initial state and displays net style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -963,7 +963,7 @@ exports[`BridgeSourceNetworkSelector renders with initial state and displays net { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1124,7 +1124,7 @@ exports[`BridgeSourceNetworkSelector renders with initial state and displays net style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1156,7 +1156,7 @@ exports[`BridgeSourceNetworkSelector renders with initial state and displays net { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1317,7 +1317,7 @@ exports[`BridgeSourceNetworkSelector renders with initial state and displays net style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1349,7 +1349,7 @@ exports[`BridgeSourceNetworkSelector renders with initial state and displays net { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1408,7 +1408,7 @@ exports[`BridgeSourceNetworkSelector renders with initial state and displays net style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Bridge/components/BridgeSourceTokenSelector/__snapshots__/BridgeSourceTokenSelector.test.tsx.snap b/app/components/UI/Bridge/components/BridgeSourceTokenSelector/__snapshots__/BridgeSourceTokenSelector.test.tsx.snap index ed92091f927c..49fe8db8a8b3 100644 --- a/app/components/UI/Bridge/components/BridgeSourceTokenSelector/__snapshots__/BridgeSourceTokenSelector.test.tsx.snap +++ b/app/components/UI/Bridge/components/BridgeSourceTokenSelector/__snapshots__/BridgeSourceTokenSelector.test.tsx.snap @@ -467,7 +467,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -758,7 +758,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -871,7 +871,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -1250,7 +1250,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1265,7 +1265,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1294,7 +1294,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1308,7 +1308,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1527,7 +1527,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1542,7 +1542,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1571,7 +1571,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1585,7 +1585,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1837,7 +1837,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1852,7 +1852,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1881,7 +1881,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1895,7 +1895,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2114,7 +2114,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2129,7 +2129,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2158,7 +2158,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2172,7 +2172,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2391,7 +2391,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2406,7 +2406,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2435,7 +2435,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2449,7 +2449,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2668,7 +2668,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2683,7 +2683,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2712,7 +2712,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2726,7 +2726,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2978,7 +2978,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2993,7 +2993,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3022,7 +3022,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3036,7 +3036,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3255,7 +3255,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3280,7 +3280,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -3296,7 +3296,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3325,7 +3325,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3339,7 +3339,7 @@ exports[`BridgeSourceTokenSelector renders with initial state and displays token style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Bridge/components/QuoteDetailsCard/__snapshots__/QuoteDetailsCard.test.tsx.snap b/app/components/UI/Bridge/components/QuoteDetailsCard/__snapshots__/QuoteDetailsCard.test.tsx.snap index 973e373a2b36..8b24e1ed525e 100644 --- a/app/components/UI/Bridge/components/QuoteDetailsCard/__snapshots__/QuoteDetailsCard.test.tsx.snap +++ b/app/components/UI/Bridge/components/QuoteDetailsCard/__snapshots__/QuoteDetailsCard.test.tsx.snap @@ -131,7 +131,7 @@ exports[`QuoteDetailsCard renders initial state 1`] = ` - - @@ -242,7 +225,7 @@ exports[`QuoteDetailsCard renders initial state 1`] = ` - - + + `; diff --git a/app/components/UI/Bridge/components/QuoteExpiredModal/__snapshots__/QuoteExpiredModal.test.tsx.snap b/app/components/UI/Bridge/components/QuoteExpiredModal/__snapshots__/QuoteExpiredModal.test.tsx.snap index 01f84174ddf7..74c4a845bb1f 100644 --- a/app/components/UI/Bridge/components/QuoteExpiredModal/__snapshots__/QuoteExpiredModal.test.tsx.snap +++ b/app/components/UI/Bridge/components/QuoteExpiredModal/__snapshots__/QuoteExpiredModal.test.tsx.snap @@ -166,7 +166,7 @@ exports[`QuoteExpiredModal renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -235,7 +235,7 @@ exports[`QuoteExpiredModal renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -284,7 +284,7 @@ exports[`QuoteExpiredModal renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Bridge/components/SlippageModal/__snapshots__/SlippageModal.test.tsx.snap b/app/components/UI/Bridge/components/SlippageModal/__snapshots__/SlippageModal.test.tsx.snap index a9e28eb27ead..d10179d394dc 100644 --- a/app/components/UI/Bridge/components/SlippageModal/__snapshots__/SlippageModal.test.tsx.snap +++ b/app/components/UI/Bridge/components/SlippageModal/__snapshots__/SlippageModal.test.tsx.snap @@ -166,7 +166,7 @@ exports[`SlippageModal renders all UI elements with the proper slippage options style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -237,7 +237,7 @@ exports[`SlippageModal renders all UI elements with the proper slippage options style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 20, @@ -305,7 +305,7 @@ exports[`SlippageModal renders all UI elements with the proper slippage options style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -353,7 +353,7 @@ exports[`SlippageModal renders all UI elements with the proper slippage options style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -401,7 +401,7 @@ exports[`SlippageModal renders all UI elements with the proper slippage options style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -449,7 +449,7 @@ exports[`SlippageModal renders all UI elements with the proper slippage options style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -503,7 +503,7 @@ exports[`SlippageModal renders all UI elements with the proper slippage options style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Bridge/components/TokenButton.tsx b/app/components/UI/Bridge/components/TokenButton.tsx index d677d6fb1893..d009dbd19373 100644 --- a/app/components/UI/Bridge/components/TokenButton.tsx +++ b/app/components/UI/Bridge/components/TokenButton.tsx @@ -1,4 +1,5 @@ import React from 'react'; +import { fontStyles } from '../../../../styles/common'; import { StyleSheet, ImageSourcePropType, @@ -52,7 +53,7 @@ const createStyles = (params: StylesParams) => { tokenSymbol: { color: theme.colors.text.default, fontSize: theme.typography.sHeadingLG.fontSize, - fontWeight: 500, + ...fontStyles.medium, }, }); }; diff --git a/app/components/UI/Bridge/components/TokenInsightsSheet/__snapshots__/TokenInsightsSheet.test.tsx.snap b/app/components/UI/Bridge/components/TokenInsightsSheet/__snapshots__/TokenInsightsSheet.test.tsx.snap index 4178f92b587c..05e8faa28252 100644 --- a/app/components/UI/Bridge/components/TokenInsightsSheet/__snapshots__/TokenInsightsSheet.test.tsx.snap +++ b/app/components/UI/Bridge/components/TokenInsightsSheet/__snapshots__/TokenInsightsSheet.test.tsx.snap @@ -233,7 +233,7 @@ exports[`TokenInsightsSheet Market Data formats positive percent change correctl style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -281,7 +281,7 @@ exports[`TokenInsightsSheet Market Data formats positive percent change correctl style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -296,7 +296,7 @@ exports[`TokenInsightsSheet Market Data formats positive percent change correctl style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -329,7 +329,7 @@ exports[`TokenInsightsSheet Market Data formats positive percent change correctl style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -366,7 +366,7 @@ exports[`TokenInsightsSheet Market Data formats positive percent change correctl style={ { "color": "#457a39", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -391,7 +391,7 @@ exports[`TokenInsightsSheet Market Data formats positive percent change correctl style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -405,7 +405,7 @@ exports[`TokenInsightsSheet Market Data formats positive percent change correctl style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -429,7 +429,7 @@ exports[`TokenInsightsSheet Market Data formats positive percent change correctl style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -443,7 +443,7 @@ exports[`TokenInsightsSheet Market Data formats positive percent change correctl style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -476,7 +476,7 @@ exports[`TokenInsightsSheet Market Data formats positive percent change correctl style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -516,7 +516,7 @@ exports[`TokenInsightsSheet Market Data formats positive percent change correctl style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -768,7 +768,7 @@ exports[`TokenInsightsSheet renders correctly with Solana token data 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -816,7 +816,7 @@ exports[`TokenInsightsSheet renders correctly with Solana token data 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -831,7 +831,7 @@ exports[`TokenInsightsSheet renders correctly with Solana token data 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -864,7 +864,7 @@ exports[`TokenInsightsSheet renders correctly with Solana token data 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -901,7 +901,7 @@ exports[`TokenInsightsSheet renders correctly with Solana token data 1`] = ` style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -926,7 +926,7 @@ exports[`TokenInsightsSheet renders correctly with Solana token data 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -940,7 +940,7 @@ exports[`TokenInsightsSheet renders correctly with Solana token data 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -964,7 +964,7 @@ exports[`TokenInsightsSheet renders correctly with Solana token data 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -978,7 +978,7 @@ exports[`TokenInsightsSheet renders correctly with Solana token data 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1011,7 +1011,7 @@ exports[`TokenInsightsSheet renders correctly with Solana token data 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1051,7 +1051,7 @@ exports[`TokenInsightsSheet renders correctly with Solana token data 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1303,7 +1303,7 @@ exports[`TokenInsightsSheet renders correctly with token data 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1351,7 +1351,7 @@ exports[`TokenInsightsSheet renders correctly with token data 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1366,7 +1366,7 @@ exports[`TokenInsightsSheet renders correctly with token data 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1399,7 +1399,7 @@ exports[`TokenInsightsSheet renders correctly with token data 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1436,7 +1436,7 @@ exports[`TokenInsightsSheet renders correctly with token data 1`] = ` style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1461,7 +1461,7 @@ exports[`TokenInsightsSheet renders correctly with token data 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1475,7 +1475,7 @@ exports[`TokenInsightsSheet renders correctly with token data 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1499,7 +1499,7 @@ exports[`TokenInsightsSheet renders correctly with token data 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1513,7 +1513,7 @@ exports[`TokenInsightsSheet renders correctly with token data 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1546,7 +1546,7 @@ exports[`TokenInsightsSheet renders correctly with token data 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1586,7 +1586,7 @@ exports[`TokenInsightsSheet renders correctly with token data 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Bridge/components/TransactionDetails/BridgeStepDescription.test.tsx b/app/components/UI/Bridge/components/TransactionDetails/BridgeStepDescription.test.tsx index f5558c316273..79e8be84c57f 100644 --- a/app/components/UI/Bridge/components/TransactionDetails/BridgeStepDescription.test.tsx +++ b/app/components/UI/Bridge/components/TransactionDetails/BridgeStepDescription.test.tsx @@ -117,21 +117,6 @@ describe('BridgeStepDescription', () => { expect(queryByText(/USDC/)).toBeFalsy(); }); - it('should render with correct text variant based on status', () => { - const { getByText } = render( - , - ); - - const textElement = getByText(/ETH/); - expect(textElement.props.style).toHaveProperty( - 'fontFamily', - 'Geist Medium', - ); - }); - it('should render with correct text color based on status', () => { const { getByText } = render( { expect(getByText(/ETH/)).toBeTruthy(); const textElement = getByText(/ETH/); expect(textElement.props.style).toHaveProperty('color', '#121314'); - expect(textElement.props.style).toHaveProperty( - 'fontFamily', - 'Geist Regular', - ); }); it('should render swap action with COMPLETE status text', () => { @@ -173,10 +154,6 @@ describe('BridgeStepDescription', () => { expect(getByText(/USDC/)).toBeTruthy(); const textElement = getByText(/ETH/); expect(textElement.props.style).toHaveProperty('color', '#121314'); - expect(textElement.props.style).toHaveProperty( - 'fontFamily', - 'Geist Regular', - ); }); it('should render with time and COMPLETE status', () => { @@ -192,10 +169,6 @@ describe('BridgeStepDescription', () => { expect(getByText(/ETH/)).toBeTruthy(); const textElement = getByText(/ETH/); expect(textElement.props.style).toHaveProperty('color', '#121314'); - expect(textElement.props.style).toHaveProperty( - 'fontFamily', - 'Geist Regular', - ); }); it('should handle bridge action with missing destChainId', () => { @@ -213,10 +186,6 @@ describe('BridgeStepDescription', () => { const textElement = getByText(/ETH/); expect(textElement.props.style).toHaveProperty('color', '#121314'); - expect(textElement.props.style).toHaveProperty( - 'fontFamily', - 'Geist Medium', - ); }); it('should handle bridge action with missing network configuration', () => { @@ -234,10 +203,6 @@ describe('BridgeStepDescription', () => { const textElement = getByText(/ETH/); expect(textElement.props.style).toHaveProperty('color', '#121314'); - expect(textElement.props.style).toHaveProperty( - 'fontFamily', - 'Geist Medium', - ); }); it('should handle swap action with missing srcSymbol', () => { @@ -283,10 +248,6 @@ describe('BridgeStepDescription', () => { expect(getByText(/USDC/)).toBeTruthy(); const textElement = getByText(/ETH/); expect(textElement.props.style).toHaveProperty('color', '#686e7d'); - expect(textElement.props.style).toHaveProperty( - 'fontFamily', - 'Geist Regular', - ); }); it('should handle bridge action with null status', () => { @@ -297,10 +258,6 @@ describe('BridgeStepDescription', () => { expect(getByText(/ETH/)).toBeTruthy(); const textElement = getByText(/ETH/); expect(textElement.props.style).toHaveProperty('color', '#686e7d'); - expect(textElement.props.style).toHaveProperty( - 'fontFamily', - 'Geist Regular', - ); }); describe('getStepStatus', () => { diff --git a/app/components/UI/BrowserBottomBar/__snapshots__/index.test.tsx.snap b/app/components/UI/BrowserBottomBar/__snapshots__/index.test.tsx.snap index 86b312a81744..38a4d294d178 100644 --- a/app/components/UI/BrowserBottomBar/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/BrowserBottomBar/__snapshots__/index.test.tsx.snap @@ -186,7 +186,7 @@ exports[`BrowserBottomBar Button states and interactions should apply disabled s "alignSelf": "center", "color": "#686e7d", "flex": 0, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 15, "textAlign": "center", } @@ -523,7 +523,7 @@ exports[`BrowserBottomBar Component snapshots should match snapshot with all pro "alignSelf": "center", "color": "#686e7d", "flex": 0, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 15, "textAlign": "center", } @@ -857,7 +857,7 @@ exports[`BrowserBottomBar Component snapshots should match snapshot with mixed e "alignSelf": "center", "color": "#686e7d", "flex": 0, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 15, "textAlign": "center", } @@ -1193,7 +1193,7 @@ exports[`BrowserBottomBar Edge cases and error handling should render without cr "alignSelf": "center", "color": "#686e7d", "flex": 0, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 15, "textAlign": "center", } @@ -1533,7 +1533,7 @@ exports[`BrowserBottomBar Fullscreen behavior should apply bottom inset padding "alignSelf": "center", "color": "#686e7d", "flex": 0, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 15, "textAlign": "center", } @@ -1871,7 +1871,7 @@ exports[`BrowserBottomBar Fullscreen behavior should display fullscreen icon whe "alignSelf": "center", "color": "#686e7d", "flex": 0, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 15, "textAlign": "center", } @@ -2209,7 +2209,7 @@ exports[`BrowserBottomBar Fullscreen behavior should display fullscreen-exit ico "alignSelf": "center", "color": "#686e7d", "flex": 0, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 15, "textAlign": "center", } @@ -2546,7 +2546,7 @@ exports[`BrowserBottomBar should render correctly 1`] = ` "alignSelf": "center", "color": "#686e7d", "flex": 0, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 15, "textAlign": "center", } diff --git a/app/components/UI/BrowserUrlBar/__snapshots__/BrowserUrlBar.test.tsx.snap b/app/components/UI/BrowserUrlBar/__snapshots__/BrowserUrlBar.test.tsx.snap index 95a51d031cf4..fe726f8132eb 100644 --- a/app/components/UI/BrowserUrlBar/__snapshots__/BrowserUrlBar.test.tsx.snap +++ b/app/components/UI/BrowserUrlBar/__snapshots__/BrowserUrlBar.test.tsx.snap @@ -48,7 +48,7 @@ exports[`BrowserUrlBar render matches snapshot when focused 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "height": 44, "margin": 0, @@ -85,7 +85,7 @@ exports[`BrowserUrlBar render matches snapshot when focused 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -172,7 +172,7 @@ exports[`BrowserUrlBar render matches snapshot when focused 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -248,7 +248,7 @@ exports[`BrowserUrlBar render matches snapshot when not focused 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "height": 44, "margin": 0, @@ -288,7 +288,7 @@ exports[`BrowserUrlBar render matches snapshot when not focused 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/CaipAccountSelectorList/__snapshots__/CaipAccountSelectorList.test.tsx.snap b/app/components/UI/CaipAccountSelectorList/__snapshots__/CaipAccountSelectorList.test.tsx.snap index efbb4101a517..dba570311fd0 100644 --- a/app/components/UI/CaipAccountSelectorList/__snapshots__/CaipAccountSelectorList.test.tsx.snap +++ b/app/components/UI/CaipAccountSelectorList/__snapshots__/CaipAccountSelectorList.test.tsx.snap @@ -157,7 +157,7 @@ exports[`CaipAccountSelectorList renders all accounts with balances 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -183,7 +183,7 @@ exports[`CaipAccountSelectorList renders all accounts with balances 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -215,7 +215,7 @@ exports[`CaipAccountSelectorList renders all accounts with balances 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -419,7 +419,7 @@ exports[`CaipAccountSelectorList renders all accounts with balances 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -445,7 +445,7 @@ exports[`CaipAccountSelectorList renders all accounts with balances 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -477,7 +477,7 @@ exports[`CaipAccountSelectorList renders all accounts with balances 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -717,7 +717,7 @@ exports[`CaipAccountSelectorList renders all accounts with right accessory 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -743,7 +743,7 @@ exports[`CaipAccountSelectorList renders all accounts with right accessory 1`] = style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -942,7 +942,7 @@ exports[`CaipAccountSelectorList renders all accounts with right accessory 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -968,7 +968,7 @@ exports[`CaipAccountSelectorList renders all accounts with right accessory 1`] = style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1201,7 +1201,7 @@ exports[`CaipAccountSelectorList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1227,7 +1227,7 @@ exports[`CaipAccountSelectorList renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1259,7 +1259,7 @@ exports[`CaipAccountSelectorList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1463,7 +1463,7 @@ exports[`CaipAccountSelectorList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1489,7 +1489,7 @@ exports[`CaipAccountSelectorList renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1521,7 +1521,7 @@ exports[`CaipAccountSelectorList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1760,7 +1760,7 @@ exports[`CaipAccountSelectorList renders network icons for accounts with transac style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1786,7 +1786,7 @@ exports[`CaipAccountSelectorList renders network icons for accounts with transac style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1818,7 +1818,7 @@ exports[`CaipAccountSelectorList renders network icons for accounts with transac style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2022,7 +2022,7 @@ exports[`CaipAccountSelectorList renders network icons for accounts with transac style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2048,7 +2048,7 @@ exports[`CaipAccountSelectorList renders network icons for accounts with transac style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2080,7 +2080,7 @@ exports[`CaipAccountSelectorList renders network icons for accounts with transac style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Card/Views/CardAuthentication/__snapshots__/CardAuthentication.test.tsx.snap b/app/components/UI/Card/Views/CardAuthentication/__snapshots__/CardAuthentication.test.tsx.snap index e37517bbc5e5..ff4bfe751717 100644 --- a/app/components/UI/Card/Views/CardAuthentication/__snapshots__/CardAuthentication.test.tsx.snap +++ b/app/components/UI/Card/Views/CardAuthentication/__snapshots__/CardAuthentication.test.tsx.snap @@ -131,7 +131,7 @@ exports[`CardAuthentication Component Login Step - Component Rendering matches l - - @@ -242,7 +225,7 @@ exports[`CardAuthentication Component Login Step - Component Rendering matches l - - + + `; diff --git a/app/components/UI/Card/Views/CardHome/CardHome.styles.ts b/app/components/UI/Card/Views/CardHome/CardHome.styles.ts index 8db77a583215..da297efb1dd7 100644 --- a/app/components/UI/Card/Views/CardHome/CardHome.styles.ts +++ b/app/components/UI/Card/Views/CardHome/CardHome.styles.ts @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../styles/common'; import { Theme } from '../../../../../util/theme/models'; const createStyles = (theme: Theme) => @@ -72,7 +73,7 @@ const createStyles = (theme: Theme) => width: '100%', }, limitedAllowanceManageCardText: { - fontWeight: 'bold', + ...fontStyles.bold, }, divider: { height: 1, diff --git a/app/components/UI/Card/Views/CardHome/__snapshots__/CardHome.test.tsx.snap b/app/components/UI/Card/Views/CardHome/__snapshots__/CardHome.test.tsx.snap index 26b99d922c56..02a3e7b653fe 100644 --- a/app/components/UI/Card/Views/CardHome/__snapshots__/CardHome.test.tsx.snap +++ b/app/components/UI/Card/Views/CardHome/__snapshots__/CardHome.test.tsx.snap @@ -377,7 +377,7 @@ exports[`CardHome Component renders correctly and matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -912,7 +912,7 @@ exports[`CardHome Component renders correctly and matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -953,7 +953,7 @@ exports[`CardHome Component renders correctly and matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1011,7 +1011,7 @@ exports[`CardHome Component renders correctly and matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1025,7 +1025,7 @@ exports[`CardHome Component renders correctly and matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1108,7 +1108,7 @@ exports[`CardHome Component renders correctly and matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1122,7 +1122,7 @@ exports[`CardHome Component renders correctly and matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1559,7 +1559,7 @@ exports[`CardHome Component renders correctly with privacy mode enabled 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -2094,7 +2094,7 @@ exports[`CardHome Component renders correctly with privacy mode enabled 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2135,7 +2135,7 @@ exports[`CardHome Component renders correctly with privacy mode enabled 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2193,7 +2193,7 @@ exports[`CardHome Component renders correctly with privacy mode enabled 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2207,7 +2207,7 @@ exports[`CardHome Component renders correctly with privacy mode enabled 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2290,7 +2290,7 @@ exports[`CardHome Component renders correctly with privacy mode enabled 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2304,7 +2304,7 @@ exports[`CardHome Component renders correctly with privacy mode enabled 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/UI/Card/Views/SpendingLimit/SpendingLimit.styles.ts b/app/components/UI/Card/Views/SpendingLimit/SpendingLimit.styles.ts index 72e15e215df8..91c958f6b055 100644 --- a/app/components/UI/Card/Views/SpendingLimit/SpendingLimit.styles.ts +++ b/app/components/UI/Card/Views/SpendingLimit/SpendingLimit.styles.ts @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../styles/common'; import { Theme } from '../../../../../util/theme/models'; const createStyles = (theme: Theme) => @@ -41,7 +42,7 @@ const createStyles = (theme: Theme) => marginRight: 8, }, selectedTokenSymbol: { - fontWeight: '600', + ...fontStyles.medium, color: theme.colors.text.default, }, selectedChainName: { @@ -115,7 +116,7 @@ const createStyles = (theme: Theme) => limitInput: { color: theme.colors.text.default, fontSize: 18, - fontWeight: '600', + ...fontStyles.medium, paddingHorizontal: 12, paddingVertical: 12, backgroundColor: theme.colors.background.default, diff --git a/app/components/UI/Card/components/AddFundsBottomSheet/__snapshots__/AddFundsBottomSheet.test.tsx.snap b/app/components/UI/Card/components/AddFundsBottomSheet/__snapshots__/AddFundsBottomSheet.test.tsx.snap index faca77e63e6f..a76ad8ad3f93 100644 --- a/app/components/UI/Card/components/AddFundsBottomSheet/__snapshots__/AddFundsBottomSheet.test.tsx.snap +++ b/app/components/UI/Card/components/AddFundsBottomSheet/__snapshots__/AddFundsBottomSheet.test.tsx.snap @@ -467,7 +467,7 @@ exports[`AddFundsBottomSheet renders with both options enabled and matches snaps style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -651,7 +651,7 @@ exports[`AddFundsBottomSheet renders with both options enabled and matches snaps style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -666,7 +666,7 @@ exports[`AddFundsBottomSheet renders with both options enabled and matches snaps style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -764,7 +764,7 @@ exports[`AddFundsBottomSheet renders with both options enabled and matches snaps style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -779,7 +779,7 @@ exports[`AddFundsBottomSheet renders with both options enabled and matches snaps style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1277,7 +1277,7 @@ exports[`AddFundsBottomSheet renders with no options when both are disabled and style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1871,7 +1871,7 @@ exports[`AddFundsBottomSheet renders with only deposit option when swaps are not style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2055,7 +2055,7 @@ exports[`AddFundsBottomSheet renders with only deposit option when swaps are not style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2070,7 +2070,7 @@ exports[`AddFundsBottomSheet renders with only deposit option when swaps are not style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2573,7 +2573,7 @@ exports[`AddFundsBottomSheet renders with only swap option when deposit is disab style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2762,7 +2762,7 @@ exports[`AddFundsBottomSheet renders with only swap option when deposit is disab style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2777,7 +2777,7 @@ exports[`AddFundsBottomSheet renders with only swap option when deposit is disab style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/UI/Card/components/AssetSelectionBottomSheet/AssetSelectionBottomSheet.styles.ts b/app/components/UI/Card/components/AssetSelectionBottomSheet/AssetSelectionBottomSheet.styles.ts new file mode 100644 index 000000000000..16365812d251 --- /dev/null +++ b/app/components/UI/Card/components/AssetSelectionBottomSheet/AssetSelectionBottomSheet.styles.ts @@ -0,0 +1,103 @@ +import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../styles/common'; +import { Theme } from '../../../../../util/theme/models'; + +const createStyles = (theme: Theme) => + StyleSheet.create({ + overlay: { + position: 'absolute', + top: 0, + left: 0, + right: 0, + bottom: 0, + backgroundColor: theme.colors.overlay.default, + justifyContent: 'flex-end', + zIndex: 1000, + }, + bottomSheet: { + backgroundColor: theme.colors.background.default, + borderTopLeftRadius: 20, + borderTopRightRadius: 20, + maxHeight: '80%', + minHeight: '50%', + }, + scrollView: { + maxHeight: '75%', + minHeight: '50%', + }, + dragHandle: { + width: 48, + height: 6, + backgroundColor: theme.colors.border.muted, + borderRadius: 3, + alignSelf: 'center', + marginTop: 8, + marginBottom: 8, + }, + header: { + flexDirection: 'row', + alignItems: 'center', + justifyContent: 'space-between', + paddingHorizontal: 16, + paddingVertical: 16, + borderBottomWidth: 1, + borderBottomColor: theme.colors.border.muted, + }, + title: { + flex: 1, + textAlign: 'center', + }, + closeIcon: { + marginLeft: 16, + }, + tokenList: { + flex: 1, + }, + loadingContainer: { + padding: 20, + alignItems: 'center', + }, + loadingText: { + marginTop: 12, + textAlign: 'center', + }, + tokenItem: { + borderBottomWidth: 1, + borderBottomColor: theme.colors.border.muted, + }, + tokenIcon: { + marginRight: 12, + }, + tokenInfo: { + flex: 1, + }, + tokenName: { + color: theme.colors.text.alternative, + marginTop: 2, + }, + tokenStatus: { + alignItems: 'flex-end', + }, + statusText: { + ...fontStyles.bold, + }, + statusEnabled: { + color: theme.colors.success.default, + }, + statusLimited: { + color: theme.colors.warning.default, + }, + statusNotEnabled: { + color: theme.colors.error.default, + }, + balanceText: { + color: theme.colors.text.default, + marginTop: 2, + }, + balanceToken: { + color: theme.colors.text.alternative, + marginTop: 1, + }, + }); + +export default createStyles; diff --git a/app/components/UI/Card/components/CardAssetItem/__snapshots__/CardAssetItem.test.tsx.snap b/app/components/UI/Card/components/CardAssetItem/__snapshots__/CardAssetItem.test.tsx.snap index e3226a12b4c0..712491dc53e7 100644 --- a/app/components/UI/Card/components/CardAssetItem/__snapshots__/CardAssetItem.test.tsx.snap +++ b/app/components/UI/Card/components/CardAssetItem/__snapshots__/CardAssetItem.test.tsx.snap @@ -468,7 +468,7 @@ exports[`CardAssetItem Component handles test network correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -492,7 +492,7 @@ exports[`CardAssetItem Component handles test network correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -507,7 +507,7 @@ exports[`CardAssetItem Component handles test network correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -944,7 +944,7 @@ exports[`CardAssetItem Component renders non-native token and matches snapshot 1 style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -968,7 +968,7 @@ exports[`CardAssetItem Component renders non-native token and matches snapshot 1 style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -983,7 +983,7 @@ exports[`CardAssetItem Component renders non-native token and matches snapshot 1 style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1415,7 +1415,7 @@ exports[`CardAssetItem Component renders with all props and matches snapshot 1`] style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1439,7 +1439,7 @@ exports[`CardAssetItem Component renders with all props and matches snapshot 1`] style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1454,7 +1454,7 @@ exports[`CardAssetItem Component renders with all props and matches snapshot 1`] style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1886,7 +1886,7 @@ exports[`CardAssetItem Component renders with privacy mode enabled and matches s style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1910,7 +1910,7 @@ exports[`CardAssetItem Component renders with privacy mode enabled and matches s style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1925,7 +1925,7 @@ exports[`CardAssetItem Component renders with privacy mode enabled and matches s style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2357,7 +2357,7 @@ exports[`CardAssetItem Component renders with required props and matches snapsho style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2381,7 +2381,7 @@ exports[`CardAssetItem Component renders with required props and matches snapsho style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2396,7 +2396,7 @@ exports[`CardAssetItem Component renders with required props and matches snapsho style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/UI/Card/components/ManageCardListItem/__snapshots__/ManageCardListItem.test.tsx.snap b/app/components/UI/Card/components/ManageCardListItem/__snapshots__/ManageCardListItem.test.tsx.snap index d0f7e999837e..355a091ec2fa 100644 --- a/app/components/UI/Card/components/ManageCardListItem/__snapshots__/ManageCardListItem.test.tsx.snap +++ b/app/components/UI/Card/components/ManageCardListItem/__snapshots__/ManageCardListItem.test.tsx.snap @@ -349,7 +349,7 @@ exports[`ManageCardListItem Component renders with React.ReactNode description a style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -759,7 +759,7 @@ exports[`ManageCardListItem Component renders with all props and matches snapsho style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -773,7 +773,7 @@ exports[`ManageCardListItem Component renders with all props and matches snapsho style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1179,7 +1179,7 @@ exports[`ManageCardListItem Component renders with custom right icon when rightI style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1193,7 +1193,7 @@ exports[`ManageCardListItem Component renders with custom right icon when rightI style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1599,7 +1599,7 @@ exports[`ManageCardListItem Component renders with default right icon when right style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1613,7 +1613,7 @@ exports[`ManageCardListItem Component renders with default right icon when right style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2019,7 +2019,7 @@ exports[`ManageCardListItem Component renders with required props and matches sn style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2033,7 +2033,7 @@ exports[`ManageCardListItem Component renders with required props and matches sn style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/UI/Card/components/SpendingLimitWarning/SpendingLimitWarning.styles.ts b/app/components/UI/Card/components/SpendingLimitWarning/SpendingLimitWarning.styles.ts index 3907fd9750a2..6c82df20a063 100644 --- a/app/components/UI/Card/components/SpendingLimitWarning/SpendingLimitWarning.styles.ts +++ b/app/components/UI/Card/components/SpendingLimitWarning/SpendingLimitWarning.styles.ts @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../styles/common'; import { Theme } from '../../../../../util/theme/models'; const createStyles = (theme: Theme) => @@ -24,13 +25,13 @@ const createStyles = (theme: Theme) => }, mainText: { fontSize: 16, - fontWeight: '600', + ...fontStyles.medium, color: theme.colors.text.default, marginBottom: 4, }, subText: { fontSize: 14, - fontWeight: '400', + ...fontStyles.normal, color: theme.colors.text.alternative, }, buttonsRow: { @@ -58,7 +59,7 @@ const createStyles = (theme: Theme) => }, buttonText: { fontSize: 14, - fontWeight: '600', + ...fontStyles.medium, color: theme.colors.text.default, }, }); diff --git a/app/components/UI/CollectibleModal/__snapshots__/CollectibleModal.test.tsx.snap b/app/components/UI/CollectibleModal/__snapshots__/CollectibleModal.test.tsx.snap index cac674b51042..ef3d565c7e6f 100644 --- a/app/components/UI/CollectibleModal/__snapshots__/CollectibleModal.test.tsx.snap +++ b/app/components/UI/CollectibleModal/__snapshots__/CollectibleModal.test.tsx.snap @@ -150,7 +150,7 @@ exports[`CollectibleModal renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -221,7 +221,7 @@ exports[`CollectibleModal renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -307,14 +307,14 @@ exports[`CollectibleModal renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -354,7 +354,7 @@ exports[`CollectibleModal renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -448,7 +448,7 @@ exports[`CollectibleModal renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -530,14 +530,14 @@ exports[`CollectibleModal renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, { @@ -583,7 +583,7 @@ exports[`CollectibleModal renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, diff --git a/app/components/UI/Collectibles/__snapshots__/index.test.tsx.snap b/app/components/UI/Collectibles/__snapshots__/index.test.tsx.snap index 8df3c85ba4a5..7e52ca53b7c8 100644 --- a/app/components/UI/Collectibles/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/Collectibles/__snapshots__/index.test.tsx.snap @@ -140,7 +140,7 @@ exports[`Collectibles should render correctly collectibles 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -193,7 +193,7 @@ exports[`Collectibles should render correctly collectibles 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, } } @@ -205,7 +205,7 @@ exports[`Collectibles should render correctly collectibles 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "marginRight": 8, "marginTop": 4, @@ -271,7 +271,7 @@ exports[`Collectibles should render empty collectibles correctly 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 20, } } diff --git a/app/components/UI/ConfirmAddAsset/__snapshots__/ConfirmAddAsset.test.tsx.snap b/app/components/UI/ConfirmAddAsset/__snapshots__/ConfirmAddAsset.test.tsx.snap index c44cbe01ce2a..2401eb78556a 100644 --- a/app/components/UI/ConfirmAddAsset/__snapshots__/ConfirmAddAsset.test.tsx.snap +++ b/app/components/UI/ConfirmAddAsset/__snapshots__/ConfirmAddAsset.test.tsx.snap @@ -16,7 +16,7 @@ exports[`ConfirmAddAsset render matches previous snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -221,7 +221,7 @@ exports[`ConfirmAddAsset render matches previous snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -235,7 +235,7 @@ exports[`ConfirmAddAsset render matches previous snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "justifyContent": "flex-end", "letterSpacing": 0, @@ -260,7 +260,7 @@ exports[`ConfirmAddAsset render matches previous snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, "justifyContent": "flex-end", "letterSpacing": 0, @@ -324,7 +324,7 @@ exports[`ConfirmAddAsset render matches previous snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -364,7 +364,7 @@ exports[`ConfirmAddAsset render matches previous snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/CustomAlert/__snapshots__/index.test.tsx.snap b/app/components/UI/CustomAlert/__snapshots__/index.test.tsx.snap index 9d7589781e3f..b1e98438d610 100644 --- a/app/components/UI/CustomAlert/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/CustomAlert/__snapshots__/index.test.tsx.snap @@ -133,7 +133,7 @@ exports[`CustomAlert should render correctly 1`] = ` warningText: { textAlign: 'left', width: '100%', - fontFamily: 'Geist Medium', + ...fontStyles.medium, }, warningTextContainer: { flexDirection: 'column', diff --git a/app/components/UI/Earn/LendingLearnMoreModal/__snapshots__/LendingLearnMoreModal.test.tsx.snap b/app/components/UI/Earn/LendingLearnMoreModal/__snapshots__/LendingLearnMoreModal.test.tsx.snap index a4e1fc44d466..4dd4c119fe5e 100644 --- a/app/components/UI/Earn/LendingLearnMoreModal/__snapshots__/LendingLearnMoreModal.test.tsx.snap +++ b/app/components/UI/Earn/LendingLearnMoreModal/__snapshots__/LendingLearnMoreModal.test.tsx.snap @@ -146,7 +146,7 @@ exports[`LendingLearnMoreModal render lending history apy chart 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -249,7 +249,7 @@ exports[`LendingLearnMoreModal render lending history apy chart 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -278,7 +278,7 @@ exports[`LendingLearnMoreModal render lending history apy chart 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -307,7 +307,7 @@ exports[`LendingLearnMoreModal render lending history apy chart 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -332,7 +332,7 @@ exports[`LendingLearnMoreModal render lending history apy chart 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -346,7 +346,7 @@ exports[`LendingLearnMoreModal render lending history apy chart 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -523,7 +523,7 @@ exports[`LendingLearnMoreModal render lending history apy chart 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -537,7 +537,7 @@ exports[`LendingLearnMoreModal render lending history apy chart 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -578,7 +578,7 @@ exports[`LendingLearnMoreModal render lending history apy chart 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -592,7 +592,7 @@ exports[`LendingLearnMoreModal render lending history apy chart 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -647,7 +647,7 @@ exports[`LendingLearnMoreModal render lending history apy chart 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -687,7 +687,7 @@ exports[`LendingLearnMoreModal render lending history apy chart 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Earn/Views/EarnInputView/__snapshots__/EarnInputView.test.tsx.snap b/app/components/UI/Earn/Views/EarnInputView/__snapshots__/EarnInputView.test.tsx.snap index e104277e60d8..43c165d24f87 100644 --- a/app/components/UI/Earn/Views/EarnInputView/__snapshots__/EarnInputView.test.tsx.snap +++ b/app/components/UI/Earn/Views/EarnInputView/__snapshots__/EarnInputView.test.tsx.snap @@ -402,7 +402,7 @@ exports[`EarnInputView render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -451,7 +451,7 @@ exports[`EarnInputView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -476,7 +476,7 @@ exports[`EarnInputView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -490,7 +490,7 @@ exports[`EarnInputView render matches snapshot 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -528,7 +528,7 @@ exports[`EarnInputView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -599,7 +599,7 @@ exports[`EarnInputView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -639,7 +639,7 @@ exports[`EarnInputView render matches snapshot 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -653,7 +653,7 @@ exports[`EarnInputView render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -707,7 +707,7 @@ exports[`EarnInputView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -744,7 +744,7 @@ exports[`EarnInputView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -781,7 +781,7 @@ exports[`EarnInputView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -832,7 +832,7 @@ exports[`EarnInputView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1572,7 +1572,7 @@ exports[`EarnInputView render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1999,7 +1999,7 @@ exports[`EarnInputView when values are entered in the keypad updates ETH and fia style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2048,7 +2048,7 @@ exports[`EarnInputView when values are entered in the keypad updates ETH and fia style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2073,7 +2073,7 @@ exports[`EarnInputView when values are entered in the keypad updates ETH and fia style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -2087,7 +2087,7 @@ exports[`EarnInputView when values are entered in the keypad updates ETH and fia style={ { "color": "#b7bbc8", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -2125,7 +2125,7 @@ exports[`EarnInputView when values are entered in the keypad updates ETH and fia style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2196,7 +2196,7 @@ exports[`EarnInputView when values are entered in the keypad updates ETH and fia style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2236,7 +2236,7 @@ exports[`EarnInputView when values are entered in the keypad updates ETH and fia style={ { "color": "#457a39", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2250,7 +2250,7 @@ exports[`EarnInputView when values are entered in the keypad updates ETH and fia style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2304,7 +2304,7 @@ exports[`EarnInputView when values are entered in the keypad updates ETH and fia style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2341,7 +2341,7 @@ exports[`EarnInputView when values are entered in the keypad updates ETH and fia style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2378,7 +2378,7 @@ exports[`EarnInputView when values are entered in the keypad updates ETH and fia style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2429,7 +2429,7 @@ exports[`EarnInputView when values are entered in the keypad updates ETH and fia style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3169,7 +3169,7 @@ exports[`EarnInputView when values are entered in the keypad updates ETH and fia style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Earn/Views/EarnLendingDepositConfirmationView/__snapshots__/EarnLendingDepositConfirmationView.test.tsx.snap b/app/components/UI/Earn/Views/EarnLendingDepositConfirmationView/__snapshots__/EarnLendingDepositConfirmationView.test.tsx.snap index 6a5b6df89e27..530632fc3d56 100644 --- a/app/components/UI/Earn/Views/EarnLendingDepositConfirmationView/__snapshots__/EarnLendingDepositConfirmationView.test.tsx.snap +++ b/app/components/UI/Earn/Views/EarnLendingDepositConfirmationView/__snapshots__/EarnLendingDepositConfirmationView.test.tsx.snap @@ -174,7 +174,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -191,7 +191,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -270,7 +270,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -347,7 +347,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -406,7 +406,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -458,7 +458,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -474,7 +474,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -533,7 +533,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -610,7 +610,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -669,7 +669,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -746,7 +746,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -805,7 +805,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -944,7 +944,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -995,7 +995,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1091,7 +1091,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1114,7 +1114,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1128,7 +1128,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1286,7 +1286,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1299,7 +1299,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1338,7 +1338,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1354,7 +1354,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1367,7 +1367,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1423,7 +1423,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1464,7 +1464,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1497,7 +1497,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1512,7 +1512,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1537,7 +1537,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1554,7 +1554,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1570,7 +1570,7 @@ exports[`EarnLendingDepositConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/UI/Earn/Views/EarnLendingDepositConfirmationView/components/ConfirmationFooter/__snapshots__/ConfirmationFooter.test.tsx.snap b/app/components/UI/Earn/Views/EarnLendingDepositConfirmationView/components/ConfirmationFooter/__snapshots__/ConfirmationFooter.test.tsx.snap index 7569d627bd0a..6383d4b9fec1 100644 --- a/app/components/UI/Earn/Views/EarnLendingDepositConfirmationView/components/ConfirmationFooter/__snapshots__/ConfirmationFooter.test.tsx.snap +++ b/app/components/UI/Earn/Views/EarnLendingDepositConfirmationView/components/ConfirmationFooter/__snapshots__/ConfirmationFooter.test.tsx.snap @@ -129,7 +129,7 @@ exports[`ConfirmationFooter renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -145,7 +145,7 @@ exports[`ConfirmationFooter renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -158,7 +158,7 @@ exports[`ConfirmationFooter renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -197,7 +197,7 @@ exports[`ConfirmationFooter renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -213,7 +213,7 @@ exports[`ConfirmationFooter renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -226,7 +226,7 @@ exports[`ConfirmationFooter renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -282,7 +282,7 @@ exports[`ConfirmationFooter renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -323,7 +323,7 @@ exports[`ConfirmationFooter renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -356,7 +356,7 @@ exports[`ConfirmationFooter renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -371,7 +371,7 @@ exports[`ConfirmationFooter renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -396,7 +396,7 @@ exports[`ConfirmationFooter renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -413,7 +413,7 @@ exports[`ConfirmationFooter renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -429,7 +429,7 @@ exports[`ConfirmationFooter renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/UI/Earn/Views/EarnLendingDepositConfirmationView/components/DepositInfoSection/__snapshots__/DepositInfoSection.test.tsx.snap b/app/components/UI/Earn/Views/EarnLendingDepositConfirmationView/components/DepositInfoSection/__snapshots__/DepositInfoSection.test.tsx.snap index 71f85046a6e1..0eb81de7901e 100644 --- a/app/components/UI/Earn/Views/EarnLendingDepositConfirmationView/components/DepositInfoSection/__snapshots__/DepositInfoSection.test.tsx.snap +++ b/app/components/UI/Earn/Views/EarnLendingDepositConfirmationView/components/DepositInfoSection/__snapshots__/DepositInfoSection.test.tsx.snap @@ -68,7 +68,7 @@ exports[`DepositInfoSection renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -145,7 +145,7 @@ exports[`DepositInfoSection renders correctly 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -204,7 +204,7 @@ exports[`DepositInfoSection renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -256,7 +256,7 @@ exports[`DepositInfoSection renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -272,7 +272,7 @@ exports[`DepositInfoSection renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -331,7 +331,7 @@ exports[`DepositInfoSection renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -408,7 +408,7 @@ exports[`DepositInfoSection renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -467,7 +467,7 @@ exports[`DepositInfoSection renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -544,7 +544,7 @@ exports[`DepositInfoSection renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -603,7 +603,7 @@ exports[`DepositInfoSection renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -742,7 +742,7 @@ exports[`DepositInfoSection renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Earn/Views/EarnLendingDepositConfirmationView/components/DepositReceiveSection/__snapshots__/DepositReceiveSection.test.tsx.snap b/app/components/UI/Earn/Views/EarnLendingDepositConfirmationView/components/DepositReceiveSection/__snapshots__/DepositReceiveSection.test.tsx.snap index 575811b56012..ed148907b019 100644 --- a/app/components/UI/Earn/Views/EarnLendingDepositConfirmationView/components/DepositReceiveSection/__snapshots__/DepositReceiveSection.test.tsx.snap +++ b/app/components/UI/Earn/Views/EarnLendingDepositConfirmationView/components/DepositReceiveSection/__snapshots__/DepositReceiveSection.test.tsx.snap @@ -35,7 +35,7 @@ exports[`DepositReceiveSection renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -131,7 +131,7 @@ exports[`DepositReceiveSection renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -154,7 +154,7 @@ exports[`DepositReceiveSection renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -168,7 +168,7 @@ exports[`DepositReceiveSection renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Earn/Views/EarnLendingDepositConfirmationView/components/Erc20TokenHero/__snapshots__/Erc20TokenHero.test.tsx.snap b/app/components/UI/Earn/Views/EarnLendingDepositConfirmationView/components/Erc20TokenHero/__snapshots__/Erc20TokenHero.test.tsx.snap index 9b5f81170d30..069c5b0c827d 100644 --- a/app/components/UI/Earn/Views/EarnLendingDepositConfirmationView/components/Erc20TokenHero/__snapshots__/Erc20TokenHero.test.tsx.snap +++ b/app/components/UI/Earn/Views/EarnLendingDepositConfirmationView/components/Erc20TokenHero/__snapshots__/Erc20TokenHero.test.tsx.snap @@ -151,7 +151,7 @@ exports[`Erc20TokenHero renders USDC token correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -168,7 +168,7 @@ exports[`Erc20TokenHero renders USDC token correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Earn/Views/EarnLendingDepositConfirmationView/components/ProgressStepper/__snapshots__/ProgressStepper.test.tsx.snap b/app/components/UI/Earn/Views/EarnLendingDepositConfirmationView/components/ProgressStepper/__snapshots__/ProgressStepper.test.tsx.snap index cc55e0ad7977..e023a51590b0 100644 --- a/app/components/UI/Earn/Views/EarnLendingDepositConfirmationView/components/ProgressStepper/__snapshots__/ProgressStepper.test.tsx.snap +++ b/app/components/UI/Earn/Views/EarnLendingDepositConfirmationView/components/ProgressStepper/__snapshots__/ProgressStepper.test.tsx.snap @@ -119,7 +119,7 @@ exports[`ProgressStepper renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -135,7 +135,7 @@ exports[`ProgressStepper renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -148,7 +148,7 @@ exports[`ProgressStepper renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -187,7 +187,7 @@ exports[`ProgressStepper renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -203,7 +203,7 @@ exports[`ProgressStepper renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -216,7 +216,7 @@ exports[`ProgressStepper renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -365,7 +365,7 @@ exports[`ProgressStepper renders first and second step complete state when activ style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -378,7 +378,7 @@ exports[`ProgressStepper renders first and second step complete state when activ style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -432,7 +432,7 @@ exports[`ProgressStepper renders first and second step complete state when activ style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -445,7 +445,7 @@ exports[`ProgressStepper renders first and second step complete state when activ style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -594,7 +594,7 @@ exports[`ProgressStepper renders first step complete and second step pending sta style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -607,7 +607,7 @@ exports[`ProgressStepper renders first step complete and second step pending sta style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -646,7 +646,7 @@ exports[`ProgressStepper renders first step complete and second step pending sta style={ { "color": "#ffffff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -662,7 +662,7 @@ exports[`ProgressStepper renders first step complete and second step pending sta style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -675,7 +675,7 @@ exports[`ProgressStepper renders first step complete and second step pending sta style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -832,7 +832,7 @@ exports[`ProgressStepper renders first step loading when isLoading prop set to t style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -845,7 +845,7 @@ exports[`ProgressStepper renders first step loading when isLoading prop set to t style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -884,7 +884,7 @@ exports[`ProgressStepper renders first step loading when isLoading prop set to t style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -900,7 +900,7 @@ exports[`ProgressStepper renders first step loading when isLoading prop set to t style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -913,7 +913,7 @@ exports[`ProgressStepper renders first step loading when isLoading prop set to t style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1047,7 +1047,7 @@ exports[`ProgressStepper renders first step pending state when active step is 0 style={ { "color": "#ffffff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1063,7 +1063,7 @@ exports[`ProgressStepper renders first step pending state when active step is 0 style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1076,7 +1076,7 @@ exports[`ProgressStepper renders first step pending state when active step is 0 style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1115,7 +1115,7 @@ exports[`ProgressStepper renders first step pending state when active step is 0 style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1131,7 +1131,7 @@ exports[`ProgressStepper renders first step pending state when active step is 0 style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1144,7 +1144,7 @@ exports[`ProgressStepper renders first step pending state when active step is 0 style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/UI/Earn/Views/EarnLendingWithdrawalConfirmationView/__snapshots__/EarnLendingWithdrawalConfirmationView.test.tsx.snap b/app/components/UI/Earn/Views/EarnLendingWithdrawalConfirmationView/__snapshots__/EarnLendingWithdrawalConfirmationView.test.tsx.snap index 877f5b928cf9..7938eebf535c 100644 --- a/app/components/UI/Earn/Views/EarnLendingWithdrawalConfirmationView/__snapshots__/EarnLendingWithdrawalConfirmationView.test.tsx.snap +++ b/app/components/UI/Earn/Views/EarnLendingWithdrawalConfirmationView/__snapshots__/EarnLendingWithdrawalConfirmationView.test.tsx.snap @@ -140,7 +140,7 @@ exports[`EarnLendingWithdrawalConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -157,7 +157,7 @@ exports[`EarnLendingWithdrawalConfirmationView matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -244,7 +244,7 @@ exports[`EarnLendingWithdrawalConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -321,7 +321,7 @@ exports[`EarnLendingWithdrawalConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -405,7 +405,7 @@ exports[`EarnLendingWithdrawalConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -504,7 +504,7 @@ exports[`EarnLendingWithdrawalConfirmationView matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -565,7 +565,7 @@ exports[`EarnLendingWithdrawalConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -693,7 +693,7 @@ exports[`EarnLendingWithdrawalConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -775,7 +775,7 @@ exports[`EarnLendingWithdrawalConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -857,7 +857,7 @@ exports[`EarnLendingWithdrawalConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -926,7 +926,7 @@ exports[`EarnLendingWithdrawalConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -967,7 +967,7 @@ exports[`EarnLendingWithdrawalConfirmationView matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1000,7 +1000,7 @@ exports[`EarnLendingWithdrawalConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1015,7 +1015,7 @@ exports[`EarnLendingWithdrawalConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1040,7 +1040,7 @@ exports[`EarnLendingWithdrawalConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1057,7 +1057,7 @@ exports[`EarnLendingWithdrawalConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1073,7 +1073,7 @@ exports[`EarnLendingWithdrawalConfirmationView matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/UI/Earn/Views/EarnWithdrawInputView/__snapshots__/EarnWithdrawInputView.test.tsx.snap b/app/components/UI/Earn/Views/EarnWithdrawInputView/__snapshots__/EarnWithdrawInputView.test.tsx.snap index 82bcd49c3067..29b8e1d10adc 100644 --- a/app/components/UI/Earn/Views/EarnWithdrawInputView/__snapshots__/EarnWithdrawInputView.test.tsx.snap +++ b/app/components/UI/Earn/Views/EarnWithdrawInputView/__snapshots__/EarnWithdrawInputView.test.tsx.snap @@ -402,7 +402,7 @@ exports[`EarnWithdrawInputView render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -451,7 +451,7 @@ exports[`EarnWithdrawInputView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -476,7 +476,7 @@ exports[`EarnWithdrawInputView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -490,7 +490,7 @@ exports[`EarnWithdrawInputView render matches snapshot 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -528,7 +528,7 @@ exports[`EarnWithdrawInputView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -595,7 +595,7 @@ exports[`EarnWithdrawInputView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -632,7 +632,7 @@ exports[`EarnWithdrawInputView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -669,7 +669,7 @@ exports[`EarnWithdrawInputView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -720,7 +720,7 @@ exports[`EarnWithdrawInputView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1461,7 +1461,7 @@ exports[`EarnWithdrawInputView render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Earn/components/EarnDepositTokenListItem/__snapshots__/EarnDepositTokenListItem.test.tsx.snap b/app/components/UI/Earn/components/EarnDepositTokenListItem/__snapshots__/EarnDepositTokenListItem.test.tsx.snap index 06fb1fb4229c..92a8b8820716 100644 --- a/app/components/UI/Earn/components/EarnDepositTokenListItem/__snapshots__/EarnDepositTokenListItem.test.tsx.snap +++ b/app/components/UI/Earn/components/EarnDepositTokenListItem/__snapshots__/EarnDepositTokenListItem.test.tsx.snap @@ -143,7 +143,7 @@ exports[`EarnDepositTokenListItem render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -168,7 +168,7 @@ exports[`EarnDepositTokenListItem render matches snapshot 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -182,7 +182,7 @@ exports[`EarnDepositTokenListItem render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/UI/Earn/components/EarnLendingBalance/__snapshots__/EarnLendingBalance.test.tsx.snap b/app/components/UI/Earn/components/EarnLendingBalance/__snapshots__/EarnLendingBalance.test.tsx.snap index 7d18fc920c42..2d22a9ee199a 100644 --- a/app/components/UI/Earn/components/EarnLendingBalance/__snapshots__/EarnLendingBalance.test.tsx.snap +++ b/app/components/UI/Earn/components/EarnLendingBalance/__snapshots__/EarnLendingBalance.test.tsx.snap @@ -42,7 +42,7 @@ exports[`EarnLendingBalance does renders earnings for output tokens 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -74,7 +74,7 @@ exports[`EarnLendingBalance does renders earnings for output tokens 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -106,7 +106,7 @@ exports[`EarnLendingBalance does renders earnings for output tokens 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -164,7 +164,7 @@ exports[`EarnLendingBalance does renders earnings for output tokens 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -197,7 +197,7 @@ exports[`EarnLendingBalance does renders earnings for output tokens 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -219,7 +219,7 @@ exports[`EarnLendingBalance does renders earnings for output tokens 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -233,7 +233,7 @@ exports[`EarnLendingBalance does renders earnings for output tokens 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -402,7 +402,7 @@ exports[`EarnLendingBalance renders balance and buttons when user has lending po style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -418,7 +418,7 @@ exports[`EarnLendingBalance renders balance and buttons when user has lending po style={ { "color": "#457a39", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -442,7 +442,7 @@ exports[`EarnLendingBalance renders balance and buttons when user has lending po style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -457,7 +457,7 @@ exports[`EarnLendingBalance renders balance and buttons when user has lending po style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -510,7 +510,7 @@ exports[`EarnLendingBalance renders balance and buttons when user has lending po style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -550,7 +550,7 @@ exports[`EarnLendingBalance renders balance and buttons when user has lending po style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Earn/components/EarnMaintenanceBanner/__snapshots__/EarnMaintenanceBanner.test.tsx.snap b/app/components/UI/Earn/components/EarnMaintenanceBanner/__snapshots__/EarnMaintenanceBanner.test.tsx.snap index d9922e05e2e6..1aee3ca7355d 100644 --- a/app/components/UI/Earn/components/EarnMaintenanceBanner/__snapshots__/EarnMaintenanceBanner.test.tsx.snap +++ b/app/components/UI/Earn/components/EarnMaintenanceBanner/__snapshots__/EarnMaintenanceBanner.test.tsx.snap @@ -49,7 +49,7 @@ exports[`EarnMaintenanceBanner renders banner and maintenance message 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Earn/components/EarnTokenList/__snapshots__/EarnTokenList.test.tsx.snap b/app/components/UI/Earn/components/EarnTokenList/__snapshots__/EarnTokenList.test.tsx.snap index d02ebbb0ff39..81f8f6054be1 100644 --- a/app/components/UI/Earn/components/EarnTokenList/__snapshots__/EarnTokenList.test.tsx.snap +++ b/app/components/UI/Earn/components/EarnTokenList/__snapshots__/EarnTokenList.test.tsx.snap @@ -155,7 +155,7 @@ exports[`EarnTokenList render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -416,7 +416,7 @@ exports[`EarnTokenList render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -430,7 +430,7 @@ exports[`EarnTokenList render matches snapshot 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -444,7 +444,7 @@ exports[`EarnTokenList render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -642,7 +642,7 @@ exports[`EarnTokenList render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -667,7 +667,7 @@ exports[`EarnTokenList render matches snapshot 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -681,7 +681,7 @@ exports[`EarnTokenList render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -848,7 +848,7 @@ exports[`EarnTokenList render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -873,7 +873,7 @@ exports[`EarnTokenList render matches snapshot 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -887,7 +887,7 @@ exports[`EarnTokenList render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/UI/Earn/components/EarnTokenSelector/__snapshots__/EarnTokenSelector.test.tsx.snap b/app/components/UI/Earn/components/EarnTokenSelector/__snapshots__/EarnTokenSelector.test.tsx.snap index 26b0217b8a4a..c07e094bebc1 100644 --- a/app/components/UI/Earn/components/EarnTokenSelector/__snapshots__/EarnTokenSelector.test.tsx.snap +++ b/app/components/UI/Earn/components/EarnTokenSelector/__snapshots__/EarnTokenSelector.test.tsx.snap @@ -184,7 +184,7 @@ exports[`EarnTokenSelector renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -245,7 +245,7 @@ exports[`EarnTokenSelector renders correctly 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -261,7 +261,7 @@ exports[`EarnTokenSelector renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/UI/Earn/components/Earnings/EarningsHistory/EarningsHistoryChart/__snapshots__/EarningsHistoryChart.test.tsx.snap b/app/components/UI/Earn/components/Earnings/EarningsHistory/EarningsHistoryChart/__snapshots__/EarningsHistoryChart.test.tsx.snap index e84dd1f003c2..d29f3079c0fd 100644 --- a/app/components/UI/Earn/components/Earnings/EarningsHistory/EarningsHistoryChart/__snapshots__/EarningsHistoryChart.test.tsx.snap +++ b/app/components/UI/Earn/components/Earnings/EarningsHistory/EarningsHistoryChart/__snapshots__/EarningsHistoryChart.test.tsx.snap @@ -22,7 +22,7 @@ exports[`EarningsHistoryChart renders to match snapshot 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -38,7 +38,7 @@ exports[`EarningsHistoryChart renders to match snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Earn/components/Earnings/__snapshots__/index.test.tsx.snap b/app/components/UI/Earn/components/Earnings/__snapshots__/index.test.tsx.snap index fcca1b100904..f1e5e6c6010f 100644 --- a/app/components/UI/Earn/components/Earnings/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/Earn/components/Earnings/__snapshots__/index.test.tsx.snap @@ -14,7 +14,7 @@ exports[`Earnings displays lending maintenance banner when feature flag is enabl style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -73,7 +73,7 @@ exports[`Earnings displays lending maintenance banner when feature flag is enabl style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -105,7 +105,7 @@ exports[`Earnings displays lending maintenance banner when feature flag is enabl style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -163,7 +163,7 @@ exports[`Earnings displays lending maintenance banner when feature flag is enabl style={ { "color": "#457a39", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -196,7 +196,7 @@ exports[`Earnings displays lending maintenance banner when feature flag is enabl style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -218,7 +218,7 @@ exports[`Earnings displays lending maintenance banner when feature flag is enabl style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -232,7 +232,7 @@ exports[`Earnings displays lending maintenance banner when feature flag is enabl style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -265,7 +265,7 @@ exports[`Earnings displays lending maintenance banner when feature flag is enabl style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -287,7 +287,7 @@ exports[`Earnings displays lending maintenance banner when feature flag is enabl style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -301,7 +301,7 @@ exports[`Earnings displays lending maintenance banner when feature flag is enabl style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -343,7 +343,7 @@ exports[`Earnings displays lending maintenance banner when feature flag is enabl style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -372,7 +372,7 @@ exports[`Earnings displays pooled-staking maintenance banner when feature flag i style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -431,7 +431,7 @@ exports[`Earnings displays pooled-staking maintenance banner when feature flag i style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -463,7 +463,7 @@ exports[`Earnings displays pooled-staking maintenance banner when feature flag i style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -521,7 +521,7 @@ exports[`Earnings displays pooled-staking maintenance banner when feature flag i style={ { "color": "#457a39", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -554,7 +554,7 @@ exports[`Earnings displays pooled-staking maintenance banner when feature flag i style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -576,7 +576,7 @@ exports[`Earnings displays pooled-staking maintenance banner when feature flag i style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -590,7 +590,7 @@ exports[`Earnings displays pooled-staking maintenance banner when feature flag i style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -623,7 +623,7 @@ exports[`Earnings displays pooled-staking maintenance banner when feature flag i style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -645,7 +645,7 @@ exports[`Earnings displays pooled-staking maintenance banner when feature flag i style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -659,7 +659,7 @@ exports[`Earnings displays pooled-staking maintenance banner when feature flag i style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -701,7 +701,7 @@ exports[`Earnings displays pooled-staking maintenance banner when feature flag i style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -730,7 +730,7 @@ exports[`Earnings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -762,7 +762,7 @@ exports[`Earnings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -820,7 +820,7 @@ exports[`Earnings should render correctly 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -853,7 +853,7 @@ exports[`Earnings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -875,7 +875,7 @@ exports[`Earnings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -889,7 +889,7 @@ exports[`Earnings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -922,7 +922,7 @@ exports[`Earnings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -944,7 +944,7 @@ exports[`Earnings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -958,7 +958,7 @@ exports[`Earnings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1000,7 +1000,7 @@ exports[`Earnings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Earn/components/EmptyStateCta/__snapshots__/EmptyStateCta.test.tsx.snap b/app/components/UI/Earn/components/EmptyStateCta/__snapshots__/EmptyStateCta.test.tsx.snap index 554386493c9b..f45b4f186bce 100644 --- a/app/components/UI/Earn/components/EmptyStateCta/__snapshots__/EmptyStateCta.test.tsx.snap +++ b/app/components/UI/Earn/components/EmptyStateCta/__snapshots__/EmptyStateCta.test.tsx.snap @@ -18,7 +18,7 @@ exports[`EmptyStateCta renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -33,7 +33,7 @@ exports[`EmptyStateCta renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -49,7 +49,7 @@ exports[`EmptyStateCta renders correctly 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -72,7 +72,7 @@ exports[`EmptyStateCta renders correctly 1`] = ` { "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -85,7 +85,7 @@ exports[`EmptyStateCta renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -124,7 +124,7 @@ exports[`EmptyStateCta renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Earn/components/InputDisplay/index.tsx b/app/components/UI/Earn/components/InputDisplay/index.tsx index 5b17d3b8cd64..2bbc2ab36ffc 100644 --- a/app/components/UI/Earn/components/InputDisplay/index.tsx +++ b/app/components/UI/Earn/components/InputDisplay/index.tsx @@ -1,4 +1,5 @@ import { useNavigation } from '@react-navigation/native'; +import { fontStyles } from '../../../../../styles/common'; import React, { useEffect, useMemo, useRef } from 'react'; import { Animated, Easing, StyleSheet, View } from 'react-native'; import { useSelector } from 'react-redux'; @@ -74,7 +75,7 @@ const createStyles = ( fontSize: 40, lineHeight: 50, letterSpacing: 0, - fontWeight: '500', + ...fontStyles.medium, } : {}, amountCursor: { diff --git a/app/components/UI/Earn/components/MaxInputModal/__snapshots__/MaxInputModal.test.tsx.snap b/app/components/UI/Earn/components/MaxInputModal/__snapshots__/MaxInputModal.test.tsx.snap index 86de205d395c..f99c8e1136de 100644 --- a/app/components/UI/Earn/components/MaxInputModal/__snapshots__/MaxInputModal.test.tsx.snap +++ b/app/components/UI/Earn/components/MaxInputModal/__snapshots__/MaxInputModal.test.tsx.snap @@ -473,7 +473,7 @@ exports[`MaxInputModal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -541,7 +541,7 @@ exports[`MaxInputModal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -597,7 +597,7 @@ exports[`MaxInputModal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -641,7 +641,7 @@ exports[`MaxInputModal render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Earn/modals/LendingMaxWithdrawalModal/__snapshots__/LendingMaxWithdrawalModal.test.tsx.snap b/app/components/UI/Earn/modals/LendingMaxWithdrawalModal/__snapshots__/LendingMaxWithdrawalModal.test.tsx.snap index 1644582afe1f..2e8ff77c5147 100644 --- a/app/components/UI/Earn/modals/LendingMaxWithdrawalModal/__snapshots__/LendingMaxWithdrawalModal.test.tsx.snap +++ b/app/components/UI/Earn/modals/LendingMaxWithdrawalModal/__snapshots__/LendingMaxWithdrawalModal.test.tsx.snap @@ -39,7 +39,7 @@ exports[`LendingMaxWithdrawalModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -108,7 +108,7 @@ exports[`LendingMaxWithdrawalModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -122,7 +122,7 @@ exports[`LendingMaxWithdrawalModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -134,7 +134,7 @@ exports[`LendingMaxWithdrawalModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -151,7 +151,7 @@ exports[`LendingMaxWithdrawalModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -163,7 +163,7 @@ exports[`LendingMaxWithdrawalModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/EvmAccountSelectorList/EvmAccountSelectorList.styles.ts b/app/components/UI/EvmAccountSelectorList/EvmAccountSelectorList.styles.ts index c383a42a1eda..c17b2379a771 100644 --- a/app/components/UI/EvmAccountSelectorList/EvmAccountSelectorList.styles.ts +++ b/app/components/UI/EvmAccountSelectorList/EvmAccountSelectorList.styles.ts @@ -1,5 +1,6 @@ // Third party dependencies. import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../styles/common'; import { Theme } from '../../../util/theme/models'; /** @@ -16,8 +17,8 @@ const styleSheet = ({ theme }: { theme: Theme }) => alignItems: 'flex-end', flexDirection: 'column', }, - balanceLabel: { textAlign: 'right', fontWeight: '500' }, - titleText: { fontWeight: '500' }, + balanceLabel: { textAlign: 'right', ...fontStyles.medium }, + titleText: { ...fontStyles.medium }, sectionHeader: { paddingHorizontal: 16, paddingVertical: 8, diff --git a/app/components/UI/EvmAccountSelectorList/EvmAccountSelectorList.tsx b/app/components/UI/EvmAccountSelectorList/EvmAccountSelectorList.tsx index ef8ebcdb7de0..d88a9a8bb398 100644 --- a/app/components/UI/EvmAccountSelectorList/EvmAccountSelectorList.tsx +++ b/app/components/UI/EvmAccountSelectorList/EvmAccountSelectorList.tsx @@ -59,7 +59,7 @@ import { selectInternalAccountsById, } from '../../../selectors/accountsController'; import { AccountWalletObject } from '@metamask/account-tree-controller'; -import { FlashList, ListRenderItem, FlashListRef } from '@shopify/flash-list'; +import { FlashList, ListRenderItem } from '@shopify/flash-list'; /** * @deprecated This component is deprecated in favor of the CaipAccountSelectorList component. @@ -89,7 +89,7 @@ const EvmAccountSelectorList = ({ /** * Ref for the FlashList component. */ - const accountListRef = useRef>(null); + const accountListRef = useRef>(null); const accountsLengthRef = useRef(0); const { styles } = useStyles(styleSheet, {}); diff --git a/app/components/UI/EvmAccountSelectorList/__snapshots__/EvmAccountSelectorList.test.tsx.snap b/app/components/UI/EvmAccountSelectorList/__snapshots__/EvmAccountSelectorList.test.tsx.snap index 50aeb10474c5..cce69b3d3701 100644 --- a/app/components/UI/EvmAccountSelectorList/__snapshots__/EvmAccountSelectorList.test.tsx.snap +++ b/app/components/UI/EvmAccountSelectorList/__snapshots__/EvmAccountSelectorList.test.tsx.snap @@ -178,9 +178,8 @@ exports[`EvmAccountSelectorList renders all accounts with balances 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 24, } @@ -205,7 +204,7 @@ exports[`EvmAccountSelectorList renders all accounts with balances 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -237,9 +236,8 @@ exports[`EvmAccountSelectorList renders all accounts with balances 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 24, "textAlign": "right", @@ -455,9 +453,8 @@ exports[`EvmAccountSelectorList renders all accounts with balances 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 24, } @@ -482,7 +479,7 @@ exports[`EvmAccountSelectorList renders all accounts with balances 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -514,9 +511,8 @@ exports[`EvmAccountSelectorList renders all accounts with balances 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 24, "textAlign": "right", @@ -779,9 +775,8 @@ exports[`EvmAccountSelectorList renders all accounts with right accessory 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 24, } @@ -806,7 +801,7 @@ exports[`EvmAccountSelectorList renders all accounts with right accessory 1`] = style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1018,9 +1013,8 @@ exports[`EvmAccountSelectorList renders all accounts with right accessory 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 24, } @@ -1045,7 +1039,7 @@ exports[`EvmAccountSelectorList renders all accounts with right accessory 1`] = style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1302,9 +1296,8 @@ exports[`EvmAccountSelectorList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 24, } @@ -1329,7 +1322,7 @@ exports[`EvmAccountSelectorList renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1361,9 +1354,8 @@ exports[`EvmAccountSelectorList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 24, "textAlign": "right", @@ -1579,9 +1571,8 @@ exports[`EvmAccountSelectorList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 24, } @@ -1606,7 +1597,7 @@ exports[`EvmAccountSelectorList renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1638,9 +1629,8 @@ exports[`EvmAccountSelectorList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 24, "textAlign": "right", @@ -1902,9 +1892,8 @@ exports[`EvmAccountSelectorList renders network icons for accounts with transact style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 24, } @@ -1929,7 +1918,7 @@ exports[`EvmAccountSelectorList renders network icons for accounts with transact style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1961,9 +1950,8 @@ exports[`EvmAccountSelectorList renders network icons for accounts with transact style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 24, "textAlign": "right", @@ -2179,9 +2167,8 @@ exports[`EvmAccountSelectorList renders network icons for accounts with transact style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 24, } @@ -2206,7 +2193,7 @@ exports[`EvmAccountSelectorList renders network icons for accounts with transact style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2238,9 +2225,8 @@ exports[`EvmAccountSelectorList renders network icons for accounts with transact style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 24, "textAlign": "right", diff --git a/app/components/UI/Identity/BackupAndSyncFeaturesToggles/__snapshots__/BackupAndSyncFeaturesToggles.test.tsx.snap b/app/components/UI/Identity/BackupAndSyncFeaturesToggles/__snapshots__/BackupAndSyncFeaturesToggles.test.tsx.snap index d25714d3da0d..dfc8f043f2ff 100644 --- a/app/components/UI/Identity/BackupAndSyncFeaturesToggles/__snapshots__/BackupAndSyncFeaturesToggles.test.tsx.snap +++ b/app/components/UI/Identity/BackupAndSyncFeaturesToggles/__snapshots__/BackupAndSyncFeaturesToggles.test.tsx.snap @@ -24,7 +24,7 @@ exports[`BackupAndSyncToggle renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -38,7 +38,7 @@ exports[`BackupAndSyncToggle renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -84,7 +84,7 @@ exports[`BackupAndSyncToggle renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -154,7 +154,7 @@ exports[`BackupAndSyncToggle renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Identity/BackupAndSyncToggle/__snapshots__/BackupAndSyncToggle.test.tsx.snap b/app/components/UI/Identity/BackupAndSyncToggle/__snapshots__/BackupAndSyncToggle.test.tsx.snap index 1ff07e254551..396a7e139f63 100644 --- a/app/components/UI/Identity/BackupAndSyncToggle/__snapshots__/BackupAndSyncToggle.test.tsx.snap +++ b/app/components/UI/Identity/BackupAndSyncToggle/__snapshots__/BackupAndSyncToggle.test.tsx.snap @@ -23,7 +23,7 @@ exports[`BackupAndSyncToggle renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -61,7 +61,7 @@ exports[`BackupAndSyncToggle renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -75,7 +75,7 @@ exports[`BackupAndSyncToggle renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Identity/ConfirmTurnOnBackupAndSyncModal/__snapshots__/ConfirmTurnOnBackupAndSyncModal.test.tsx.snap b/app/components/UI/Identity/ConfirmTurnOnBackupAndSyncModal/__snapshots__/ConfirmTurnOnBackupAndSyncModal.test.tsx.snap index 3ac41e8bae47..95dbc5ffadb1 100644 --- a/app/components/UI/Identity/ConfirmTurnOnBackupAndSyncModal/__snapshots__/ConfirmTurnOnBackupAndSyncModal.test.tsx.snap +++ b/app/components/UI/Identity/ConfirmTurnOnBackupAndSyncModal/__snapshots__/ConfirmTurnOnBackupAndSyncModal.test.tsx.snap @@ -147,7 +147,7 @@ exports[`ConfirmTurnOnBackupAndSyncModal renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -163,7 +163,7 @@ exports[`ConfirmTurnOnBackupAndSyncModal renders correctly 1`] = ` { "alignSelf": "flex-start", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -218,7 +218,7 @@ exports[`ConfirmTurnOnBackupAndSyncModal renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -263,7 +263,7 @@ exports[`ConfirmTurnOnBackupAndSyncModal renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/LedgerModals/Steps/__snapshots__/OpenETHAppStep.test.tsx.snap b/app/components/UI/LedgerModals/Steps/__snapshots__/OpenETHAppStep.test.tsx.snap index 56cf29c57fc6..407655750bab 100644 --- a/app/components/UI/LedgerModals/Steps/__snapshots__/OpenETHAppStep.test.tsx.snap +++ b/app/components/UI/LedgerModals/Steps/__snapshots__/OpenETHAppStep.test.tsx.snap @@ -27,14 +27,14 @@ exports[`OpenETHAppStep matches snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -80,7 +80,7 @@ exports[`OpenETHAppStep matches snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -116,7 +116,7 @@ exports[`OpenETHAppStep matches snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -154,14 +154,14 @@ exports[`OpenETHAppStep matches snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -227,7 +227,7 @@ exports[`OpenETHAppStep matches snapshot 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, diff --git a/app/components/UI/LedgerModals/Steps/__snapshots__/SearchingForDeviceStep.test.tsx.snap b/app/components/UI/LedgerModals/Steps/__snapshots__/SearchingForDeviceStep.test.tsx.snap index 5dec513165fb..7e9615461166 100644 --- a/app/components/UI/LedgerModals/Steps/__snapshots__/SearchingForDeviceStep.test.tsx.snap +++ b/app/components/UI/LedgerModals/Steps/__snapshots__/SearchingForDeviceStep.test.tsx.snap @@ -35,7 +35,7 @@ exports[`SearchingForDeviceStep matches snapshot for Android < 12 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 22, "letterSpacing": 0, "lineHeight": 24, @@ -66,7 +66,7 @@ exports[`SearchingForDeviceStep matches snapshot for Android < 12 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -80,7 +80,7 @@ exports[`SearchingForDeviceStep matches snapshot for Android < 12 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -95,7 +95,7 @@ exports[`SearchingForDeviceStep matches snapshot for Android < 12 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -110,7 +110,7 @@ exports[`SearchingForDeviceStep matches snapshot for Android < 12 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -125,7 +125,7 @@ exports[`SearchingForDeviceStep matches snapshot for Android < 12 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -140,7 +140,7 @@ exports[`SearchingForDeviceStep matches snapshot for Android < 12 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -155,7 +155,7 @@ exports[`SearchingForDeviceStep matches snapshot for Android < 12 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -177,7 +177,7 @@ exports[`SearchingForDeviceStep matches snapshot for Android < 12 1`] = ` "color": "#4459ff", "flex": 1, "flexWrap": "wrap", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -228,7 +228,7 @@ exports[`SearchingForDeviceStep matches snapshot for Android 12+ 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 22, "letterSpacing": 0, "lineHeight": 24, @@ -259,7 +259,7 @@ exports[`SearchingForDeviceStep matches snapshot for Android 12+ 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -273,7 +273,7 @@ exports[`SearchingForDeviceStep matches snapshot for Android 12+ 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -288,7 +288,7 @@ exports[`SearchingForDeviceStep matches snapshot for Android 12+ 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -303,7 +303,7 @@ exports[`SearchingForDeviceStep matches snapshot for Android 12+ 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -318,7 +318,7 @@ exports[`SearchingForDeviceStep matches snapshot for Android 12+ 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -333,7 +333,7 @@ exports[`SearchingForDeviceStep matches snapshot for Android 12+ 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -348,7 +348,7 @@ exports[`SearchingForDeviceStep matches snapshot for Android 12+ 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -370,7 +370,7 @@ exports[`SearchingForDeviceStep matches snapshot for Android 12+ 1`] = ` "color": "#4459ff", "flex": 1, "flexWrap": "wrap", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/LedgerModals/__snapshots__/LedgerConfirmationModal.test.tsx.snap b/app/components/UI/LedgerModals/__snapshots__/LedgerConfirmationModal.test.tsx.snap index 8e853fe5742b..9407830cc2e2 100644 --- a/app/components/UI/LedgerModals/__snapshots__/LedgerConfirmationModal.test.tsx.snap +++ b/app/components/UI/LedgerModals/__snapshots__/LedgerConfirmationModal.test.tsx.snap @@ -54,7 +54,7 @@ exports[`LedgerConfirmationModal render matches latest snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 22, "letterSpacing": 0, "lineHeight": 24, @@ -85,7 +85,7 @@ exports[`LedgerConfirmationModal render matches latest snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -99,7 +99,7 @@ exports[`LedgerConfirmationModal render matches latest snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -114,7 +114,7 @@ exports[`LedgerConfirmationModal render matches latest snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -129,7 +129,7 @@ exports[`LedgerConfirmationModal render matches latest snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -144,7 +144,7 @@ exports[`LedgerConfirmationModal render matches latest snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -159,7 +159,7 @@ exports[`LedgerConfirmationModal render matches latest snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -181,7 +181,7 @@ exports[`LedgerConfirmationModal render matches latest snapshot 1`] = ` "color": "#4459ff", "flex": 1, "flexWrap": "wrap", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/LedgerModals/__snapshots__/LedgerMessageSignModal.test.tsx.snap b/app/components/UI/LedgerModals/__snapshots__/LedgerMessageSignModal.test.tsx.snap index 12964e58dcbb..86e5f7c791d9 100644 --- a/app/components/UI/LedgerModals/__snapshots__/LedgerMessageSignModal.test.tsx.snap +++ b/app/components/UI/LedgerModals/__snapshots__/LedgerMessageSignModal.test.tsx.snap @@ -454,7 +454,7 @@ exports[`LedgerMessageSignModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 22, "letterSpacing": 0, "lineHeight": 24, @@ -485,7 +485,7 @@ exports[`LedgerMessageSignModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -499,7 +499,7 @@ exports[`LedgerMessageSignModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -514,7 +514,7 @@ exports[`LedgerMessageSignModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -529,7 +529,7 @@ exports[`LedgerMessageSignModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -544,7 +544,7 @@ exports[`LedgerMessageSignModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -559,7 +559,7 @@ exports[`LedgerMessageSignModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -581,7 +581,7 @@ exports[`LedgerMessageSignModal should render correctly 1`] = ` "color": "#4459ff", "flex": 1, "flexWrap": "wrap", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/ManageNetworks/ManageNetworks.styles.ts b/app/components/UI/ManageNetworks/ManageNetworks.styles.ts index e1ecca37410b..bbc50f8abb72 100644 --- a/app/components/UI/ManageNetworks/ManageNetworks.styles.ts +++ b/app/components/UI/ManageNetworks/ManageNetworks.styles.ts @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../styles/common'; const styles = StyleSheet.create({ setting: { @@ -14,7 +15,7 @@ const styles = StyleSheet.create({ textAlign: 'left', marginTop: 10, lineHeight: 22, - fontWeight: '400', + ...fontStyles.normal, }, networkPicker: { marginVertical: 16, diff --git a/app/components/UI/ManageNetworks/__snapshots__/ManageNetworks.test.js.snap b/app/components/UI/ManageNetworks/__snapshots__/ManageNetworks.test.js.snap index 7a313f8be5fa..3dce4fe96cd4 100644 --- a/app/components/UI/ManageNetworks/__snapshots__/ManageNetworks.test.js.snap +++ b/app/components/UI/ManageNetworks/__snapshots__/ManageNetworks.test.js.snap @@ -22,7 +22,7 @@ exports[`ManageNetworks should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -37,9 +37,8 @@ exports[`ManageNetworks should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, - "fontWeight": "400", "letterSpacing": 0, "lineHeight": 22, "marginTop": 10, @@ -54,7 +53,7 @@ exports[`ManageNetworks should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -71,7 +70,7 @@ exports[`ManageNetworks should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -123,7 +122,7 @@ exports[`ManageNetworks should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, "letterSpacing": 0, "lineHeight": undefined, @@ -141,7 +140,7 @@ exports[`ManageNetworks should render correctly 1`] = ` { "color": "#121314", "flexShrink": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/ModalNavbarTitle/__snapshots__/index.test.tsx.snap b/app/components/UI/ModalNavbarTitle/__snapshots__/index.test.tsx.snap index d8f7ae465bfa..11d79eba26fb 100644 --- a/app/components/UI/ModalNavbarTitle/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/ModalNavbarTitle/__snapshots__/index.test.tsx.snap @@ -12,7 +12,7 @@ exports[`ModalNavbarTitle should render correctly 1`] = ` }, title: { fontSize: 18, - fontWeight: 'bold', + ...fontStyles.bold, marginBottom: 5, }, date: { diff --git a/app/components/UI/MultichainTransactionListItem/MultichainTransactionListItem.styles.ts b/app/components/UI/MultichainTransactionListItem/MultichainTransactionListItem.styles.ts index 2cb0b19f41cc..9f2fa908ea06 100644 --- a/app/components/UI/MultichainTransactionListItem/MultichainTransactionListItem.styles.ts +++ b/app/components/UI/MultichainTransactionListItem/MultichainTransactionListItem.styles.ts @@ -90,7 +90,7 @@ const createStyles = (colors: ThemeColors, typography: ThemeTypography) => }, typeText: { fontSize: 16, - fontWeight: '600', + ...fontStyles.medium, }, statusText: { fontSize: 12, @@ -100,7 +100,7 @@ const createStyles = (colors: ThemeColors, typography: ThemeTypography) => }, amountText: { fontSize: 16, - fontWeight: '600', + ...fontStyles.medium, }, dateText: { fontSize: 12, diff --git a/app/components/UI/Name/__snapshots__/Name.test.tsx.snap b/app/components/UI/Name/__snapshots__/Name.test.tsx.snap index 413a4e9bf952..a458111c7273 100644 --- a/app/components/UI/Name/__snapshots__/Name.test.tsx.snap +++ b/app/components/UI/Name/__snapshots__/Name.test.tsx.snap @@ -120,7 +120,7 @@ exports[`Name recognized address renders account wallet name 1`] = ` { "color": "#121314", "flexShrink": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -135,7 +135,7 @@ exports[`Name recognized address renders account wallet name 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -274,7 +274,7 @@ exports[`Name recognized address should render image 1`] = ` { "color": "#121314", "flexShrink": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -408,7 +408,7 @@ exports[`Name recognized address should return name 1`] = ` { "color": "#121314", "flexShrink": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -503,7 +503,7 @@ exports[`Name unknown address displays checksummed address 1`] = ` { "color": "#121314", "flexShrink": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Navbar/index.js b/app/components/UI/Navbar/index.js index 86d5d10030cf..009b9d7dacb0 100644 --- a/app/components/UI/Navbar/index.js +++ b/app/components/UI/Navbar/index.js @@ -1817,7 +1817,7 @@ export function getBridgeTransactionDetailsNavbar(navigation) { export function getPerpsTransactionsDetailsNavbar(navigation, title) { const innerStyles = StyleSheet.create({ perpsTransactionsTitle: { - fontWeight: '700', + ...fontStyles.bold, textAlign: 'center', flex: 1, }, @@ -1854,7 +1854,7 @@ export function getPerpsTransactionsDetailsNavbar(navigation, title) { export function getPerpsMarketDetailsNavbar(navigation, title) { const innerStyles = StyleSheet.create({ perpsMarketDetailsTitle: { - fontWeight: '700', + ...fontStyles.bold, textAlign: 'center', flex: 1, }, @@ -1914,7 +1914,7 @@ export function getDepositNavbarOptions( shadowOpacity: 0, }, headerTitleStyle: { - fontWeight: '600', + ...fontStyles.medium, fontSize: 18, color: theme.colors.text.default, }, diff --git a/app/components/UI/NavbarBrowserTitle/__snapshots__/index.test.tsx.snap b/app/components/UI/NavbarBrowserTitle/__snapshots__/index.test.tsx.snap index d2a8df6f21bf..341e1674b1ab 100644 --- a/app/components/UI/NavbarBrowserTitle/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/NavbarBrowserTitle/__snapshots__/index.test.tsx.snap @@ -28,7 +28,7 @@ exports[`NavbarBrowserTitle should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "textAlign": "center", }, @@ -93,7 +93,7 @@ exports[`NavbarBrowserTitle should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 11, "lineHeight": 11, } diff --git a/app/components/UI/NetworkInfo/__snapshots__/index.test.tsx.snap b/app/components/UI/NetworkInfo/__snapshots__/index.test.tsx.snap index d391f029347a..9cfefd58de7b 100644 --- a/app/components/UI/NetworkInfo/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/NetworkInfo/__snapshots__/index.test.tsx.snap @@ -21,7 +21,7 @@ exports[`NetworkInfo render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "marginVertical": 10, "textAlign": "center", @@ -96,7 +96,7 @@ exports[`NetworkInfo render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "marginBottom": 15, "textAlign": "center", @@ -296,7 +296,7 @@ exports[`NetworkInfo render correctly 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -337,7 +337,7 @@ exports[`NetworkInfo render correctly with EVM network without ticker 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "marginVertical": 10, "textAlign": "center", @@ -385,7 +385,7 @@ exports[`NetworkInfo render correctly with EVM network without ticker 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -414,7 +414,7 @@ exports[`NetworkInfo render correctly with EVM network without ticker 1`] = ` style={ { "color": "#b7bbc866", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, "paddingVertical": 5, "textAlign": "center", @@ -428,7 +428,7 @@ exports[`NetworkInfo render correctly with EVM network without ticker 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "marginBottom": 15, "textAlign": "center", @@ -628,7 +628,7 @@ exports[`NetworkInfo render correctly with EVM network without ticker 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -669,7 +669,7 @@ exports[`NetworkInfo render correctly with non-EVM selected 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "marginVertical": 10, "textAlign": "center", @@ -744,7 +744,7 @@ exports[`NetworkInfo render correctly with non-EVM selected 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "marginBottom": 15, "textAlign": "center", @@ -883,7 +883,7 @@ exports[`NetworkInfo render correctly with non-EVM selected 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, diff --git a/app/components/UI/NetworkManager/index.styles.ts b/app/components/UI/NetworkManager/index.styles.ts index b9d8b7d98611..b2aa8bf5eeb8 100644 --- a/app/components/UI/NetworkManager/index.styles.ts +++ b/app/components/UI/NetworkManager/index.styles.ts @@ -1,8 +1,5 @@ import { StyleSheet, TextStyle } from 'react-native'; -import { - getFontFamily, - TextVariant, -} from '../../../component-library/components/Texts/Text'; +import { fontStyles } from '../../../styles/common'; import { Theme } from '../../../util/theme/models'; const SHEET_BORDER_RADIUS = 20; @@ -14,8 +11,6 @@ const TAB_PADDING_VERTICAL = 8; const DELETE_CONTAINER_PADDING_LEFT = 16; const DELETE_CONTAINER_PADDING_RIGHT = 8; -const BODY_MD_FONT_FAMILY = getFontFamily(TextVariant.BodyMD); - const createStyles = (params: { theme: Theme }) => { const { theme } = params; const { colors, typography } = theme; @@ -56,8 +51,7 @@ const createStyles = (params: { theme: Theme }) => { }, textStyle: { ...(typography.sBodyMD as TextStyle), - fontFamily: BODY_MD_FONT_FAMILY, - fontWeight: '500', + ...fontStyles.medium, }, tabBar: { borderColor: borderMuted, diff --git a/app/components/UI/NetworkModal/__snapshots__/index.test.tsx.snap b/app/components/UI/NetworkModal/__snapshots__/index.test.tsx.snap index 44a87ae52226..b70bc4511a27 100644 --- a/app/components/UI/NetworkModal/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/NetworkModal/__snapshots__/index.test.tsx.snap @@ -172,7 +172,7 @@ exports[`NetworkDetails renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -185,7 +185,7 @@ exports[`NetworkDetails renders correctly 1`] = ` + + + + +`; + +exports[`NotificationsList renders empty state 1`] = ` + + + } + contentContainerStyle={ + { + "flexGrow": 1, + "paddingBottom": 100, + } + } + data={[]} + getItem={[Function]} + getItemCount={[Function]} + initialNumToRender={10} + keyExtractor={[Function]} + maxToRenderPerBatch={2} + onContentSizeChange={[Function]} + onEndReachedThreshold={0.5} + onLayout={[Function]} + onMomentumScrollBegin={[Function]} + onMomentumScrollEnd={[Function]} + onRefresh={[Function]} + onScroll={[Function]} + onScrollBeginDrag={[Function]} + onScrollEndDrag={[Function]} + refreshControl={ + + } + refreshing={false} + removeClippedSubviews={false} + renderItem={[Function]} + scrollEventThrottle={0.0001} + stickyHeaderIndices={[]} + tabLabel="" + testID="notification-menu-scroll-view" + viewabilityConfigCallbackPairs={[]} + > + + + + + + Nothing to see here + + + This is where you can find notifications once there’s activity in your wallet. + + + + + +`; diff --git a/app/components/UI/Notification/NotificationMenuItem/__snapshots__/Content.test.tsx.snap b/app/components/UI/Notification/NotificationMenuItem/__snapshots__/Content.test.tsx.snap new file mode 100644 index 000000000000..d4ed4c42c6d5 --- /dev/null +++ b/app/components/UI/Notification/NotificationMenuItem/__snapshots__/Content.test.tsx.snap @@ -0,0 +1,92 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`NotificationContent render matches snapshot 1`] = ` + + + + Welcome to the new Test! + + + Yesterday + + + + + We are excited to announce the launch of our brand new website and app! + + + Ethereum + + + +`; diff --git a/app/components/UI/Notification/ResetNotificationsModal/__snapshots__/ResetNotificationsModal.test.tsx.snap b/app/components/UI/Notification/ResetNotificationsModal/__snapshots__/ResetNotificationsModal.test.tsx.snap index de96219b1545..42f00d0079be 100644 --- a/app/components/UI/Notification/ResetNotificationsModal/__snapshots__/ResetNotificationsModal.test.tsx.snap +++ b/app/components/UI/Notification/ResetNotificationsModal/__snapshots__/ResetNotificationsModal.test.tsx.snap @@ -147,7 +147,7 @@ exports[`ResetNotificationsModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -163,7 +163,7 @@ exports[`ResetNotificationsModal should render correctly 1`] = ` { "alignSelf": "flex-start", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -218,7 +218,7 @@ exports[`ResetNotificationsModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -264,7 +264,7 @@ exports[`ResetNotificationsModal should render correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/OptinMetrics/__snapshots__/index.test.tsx.snap b/app/components/UI/OptinMetrics/__snapshots__/index.test.tsx.snap index 349930af4b8d..967d7009c5ac 100644 --- a/app/components/UI/OptinMetrics/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/OptinMetrics/__snapshots__/index.test.tsx.snap @@ -250,9 +250,8 @@ exports[`OptinMetrics Snapshots android render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, - "fontWeight": "700", "letterSpacing": 0, "lineHeight": 40, "marginTop": 8, @@ -287,7 +286,7 @@ exports[`OptinMetrics Snapshots android render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -382,7 +381,7 @@ exports[`OptinMetrics Snapshots android render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -398,7 +397,7 @@ exports[`OptinMetrics Snapshots android render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -414,7 +413,7 @@ exports[`OptinMetrics Snapshots android render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -494,7 +493,7 @@ exports[`OptinMetrics Snapshots android render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -510,7 +509,7 @@ exports[`OptinMetrics Snapshots android render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -562,7 +561,7 @@ exports[`OptinMetrics Snapshots android render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -942,9 +941,8 @@ exports[`OptinMetrics Snapshots android render matches snapshot with status bar style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, - "fontWeight": "700", "letterSpacing": 0, "lineHeight": 40, "marginTop": 8, @@ -979,7 +977,7 @@ exports[`OptinMetrics Snapshots android render matches snapshot with status bar style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1074,7 +1072,7 @@ exports[`OptinMetrics Snapshots android render matches snapshot with status bar style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1090,7 +1088,7 @@ exports[`OptinMetrics Snapshots android render matches snapshot with status bar style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1106,7 +1104,7 @@ exports[`OptinMetrics Snapshots android render matches snapshot with status bar style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1186,7 +1184,7 @@ exports[`OptinMetrics Snapshots android render matches snapshot with status bar style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1202,7 +1200,7 @@ exports[`OptinMetrics Snapshots android render matches snapshot with status bar style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1254,7 +1252,7 @@ exports[`OptinMetrics Snapshots android render matches snapshot with status bar style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1746,9 +1744,8 @@ exports[`OptinMetrics Snapshots iOS renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, - "fontWeight": "700", "letterSpacing": 0, "lineHeight": 40, "marginTop": 8, @@ -1783,7 +1780,7 @@ exports[`OptinMetrics Snapshots iOS renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1878,7 +1875,7 @@ exports[`OptinMetrics Snapshots iOS renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1894,7 +1891,7 @@ exports[`OptinMetrics Snapshots iOS renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1910,7 +1907,7 @@ exports[`OptinMetrics Snapshots iOS renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1990,7 +1987,7 @@ exports[`OptinMetrics Snapshots iOS renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2006,7 +2003,7 @@ exports[`OptinMetrics Snapshots iOS renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2058,7 +2055,7 @@ exports[`OptinMetrics Snapshots iOS renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/OptinMetrics/index.js b/app/components/UI/OptinMetrics/index.js index 4d42150e3dae..4ba946e5307e 100644 --- a/app/components/UI/OptinMetrics/index.js +++ b/app/components/UI/OptinMetrics/index.js @@ -111,7 +111,7 @@ const createStyles = ({ colors }) => backgroundColor: colors.border.muted, }, title: { - fontWeight: '700', + ...fontStyles.bold, marginTop: 8, }, sectionContainer: { diff --git a/app/components/UI/PaymentRequest/__snapshots__/index.test.tsx.snap b/app/components/UI/PaymentRequest/__snapshots__/index.test.tsx.snap index 3bb5738b88f4..e821b147372e 100644 --- a/app/components/UI/PaymentRequest/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/PaymentRequest/__snapshots__/index.test.tsx.snap @@ -63,7 +63,7 @@ exports[`PaymentRequest renders correctly 1`] = ` { "color": "#121314", "flexShrink": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -137,7 +137,7 @@ exports[`PaymentRequest renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, } } @@ -197,7 +197,7 @@ exports[`PaymentRequest renders correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "height": 40, "paddingLeft": 8, @@ -224,7 +224,7 @@ exports[`PaymentRequest renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "marginBottom": 8, } @@ -364,7 +364,7 @@ exports[`PaymentRequest renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "paddingBottom": 4, } @@ -376,7 +376,7 @@ exports[`PaymentRequest renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", } } > @@ -505,7 +505,7 @@ exports[`PaymentRequest renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "paddingBottom": 4, } @@ -517,7 +517,7 @@ exports[`PaymentRequest renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", } } > @@ -597,7 +597,7 @@ exports[`PaymentRequest renders correctly with network picker when feature flag { "color": "#121314", "flexShrink": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -671,7 +671,7 @@ exports[`PaymentRequest renders correctly with network picker when feature flag style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, } } @@ -731,7 +731,7 @@ exports[`PaymentRequest renders correctly with network picker when feature flag { "color": "#121314", "flex": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "height": 40, "paddingLeft": 8, @@ -758,7 +758,7 @@ exports[`PaymentRequest renders correctly with network picker when feature flag style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "marginBottom": 8, } @@ -898,7 +898,7 @@ exports[`PaymentRequest renders correctly with network picker when feature flag style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "paddingBottom": 4, } @@ -910,7 +910,7 @@ exports[`PaymentRequest renders correctly with network picker when feature flag style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", } } > @@ -1039,7 +1039,7 @@ exports[`PaymentRequest renders correctly with network picker when feature flag style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "paddingBottom": 4, } @@ -1051,7 +1051,7 @@ exports[`PaymentRequest renders correctly with network picker when feature flag style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", } } > diff --git a/app/components/UI/PermissionsSummary/__snapshots__/PermissionsSummary.test.tsx.snap b/app/components/UI/PermissionsSummary/__snapshots__/PermissionsSummary.test.tsx.snap index 3563a38cacd6..41c533e64d9a 100644 --- a/app/components/UI/PermissionsSummary/__snapshots__/PermissionsSummary.test.tsx.snap +++ b/app/components/UI/PermissionsSummary/__snapshots__/PermissionsSummary.test.tsx.snap @@ -112,7 +112,7 @@ exports[`PermissionsSummary should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -232,7 +232,7 @@ exports[`PermissionsSummary should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -247,7 +247,7 @@ exports[`PermissionsSummary should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -384,7 +384,7 @@ exports[`PermissionsSummary should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -398,7 +398,7 @@ exports[`PermissionsSummary should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -429,7 +429,7 @@ exports[`PermissionsSummary should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -515,7 +515,7 @@ exports[`PermissionsSummary should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -600,7 +600,7 @@ exports[`PermissionsSummary should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -632,7 +632,7 @@ exports[`PermissionsSummary should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -645,7 +645,7 @@ exports[`PermissionsSummary should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -785,7 +785,7 @@ exports[`PermissionsSummary should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -817,7 +817,7 @@ exports[`PermissionsSummary should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -829,7 +829,7 @@ exports[`PermissionsSummary should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -987,7 +987,7 @@ exports[`PermissionsSummary should render correctly 1`] = ` style={ { "color": "#ca3542", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1053,7 +1053,7 @@ exports[`PermissionsSummary should render correctly 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -1113,7 +1113,7 @@ exports[`PermissionsSummary should render correctly 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -1247,7 +1247,7 @@ exports[`PermissionsSummary should render correctly for network switch 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1367,7 +1367,7 @@ exports[`PermissionsSummary should render correctly for network switch 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1382,7 +1382,7 @@ exports[`PermissionsSummary should render correctly for network switch 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1461,7 +1461,7 @@ exports[`PermissionsSummary should render correctly for network switch 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1545,7 +1545,7 @@ exports[`PermissionsSummary should render correctly for network switch 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1577,7 +1577,7 @@ exports[`PermissionsSummary should render correctly for network switch 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1589,7 +1589,7 @@ exports[`PermissionsSummary should render correctly for network switch 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1603,7 +1603,7 @@ exports[`PermissionsSummary should render correctly for network switch 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1707,7 +1707,7 @@ exports[`PermissionsSummary should render correctly for network switch 1`] = ` style={ { "color": "#ca3542", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1773,7 +1773,7 @@ exports[`PermissionsSummary should render correctly for network switch 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -1833,7 +1833,7 @@ exports[`PermissionsSummary should render correctly for network switch 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -1967,7 +1967,7 @@ exports[`PermissionsSummary should render only the account permissions card when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2087,7 +2087,7 @@ exports[`PermissionsSummary should render only the account permissions card when style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2102,7 +2102,7 @@ exports[`PermissionsSummary should render only the account permissions card when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2180,7 +2180,7 @@ exports[`PermissionsSummary should render only the account permissions card when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2212,7 +2212,7 @@ exports[`PermissionsSummary should render only the account permissions card when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2225,7 +2225,7 @@ exports[`PermissionsSummary should render only the account permissions card when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2371,7 +2371,7 @@ exports[`PermissionsSummary should render only the account permissions card when style={ { "color": "#ca3542", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2437,7 +2437,7 @@ exports[`PermissionsSummary should render only the account permissions card when null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -2497,7 +2497,7 @@ exports[`PermissionsSummary should render only the account permissions card when null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -2613,7 +2613,7 @@ exports[`PermissionsSummary should render only the network permissions card when [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 24, "textAlign": "center", "textTransform": "uppercase", @@ -2654,7 +2654,7 @@ exports[`PermissionsSummary should render only the network permissions card when style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2669,7 +2669,7 @@ exports[`PermissionsSummary should render only the network permissions card when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2746,7 +2746,7 @@ exports[`PermissionsSummary should render only the network permissions card when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2778,7 +2778,7 @@ exports[`PermissionsSummary should render only the network permissions card when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2790,7 +2790,7 @@ exports[`PermissionsSummary should render only the network permissions card when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2947,7 +2947,7 @@ exports[`PermissionsSummary should render only the network permissions card when style={ { "color": "#ca3542", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3013,7 +3013,7 @@ exports[`PermissionsSummary should render only the network permissions card when null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -3073,7 +3073,7 @@ exports[`PermissionsSummary should render only the network permissions card when null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -3207,7 +3207,7 @@ exports[`PermissionsSummary should render the tab view when both showAccountsOnl style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3327,7 +3327,7 @@ exports[`PermissionsSummary should render the tab view when both showAccountsOnl style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3342,7 +3342,7 @@ exports[`PermissionsSummary should render the tab view when both showAccountsOnl style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3479,7 +3479,7 @@ exports[`PermissionsSummary should render the tab view when both showAccountsOnl style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3493,7 +3493,7 @@ exports[`PermissionsSummary should render the tab view when both showAccountsOnl style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3524,7 +3524,7 @@ exports[`PermissionsSummary should render the tab view when both showAccountsOnl style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3610,7 +3610,7 @@ exports[`PermissionsSummary should render the tab view when both showAccountsOnl style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3695,7 +3695,7 @@ exports[`PermissionsSummary should render the tab view when both showAccountsOnl style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3727,7 +3727,7 @@ exports[`PermissionsSummary should render the tab view when both showAccountsOnl style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3740,7 +3740,7 @@ exports[`PermissionsSummary should render the tab view when both showAccountsOnl style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3880,7 +3880,7 @@ exports[`PermissionsSummary should render the tab view when both showAccountsOnl style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3912,7 +3912,7 @@ exports[`PermissionsSummary should render the tab view when both showAccountsOnl style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3924,7 +3924,7 @@ exports[`PermissionsSummary should render the tab view when both showAccountsOnl style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4082,7 +4082,7 @@ exports[`PermissionsSummary should render the tab view when both showAccountsOnl style={ { "color": "#ca3542", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4148,7 +4148,7 @@ exports[`PermissionsSummary should render the tab view when both showAccountsOnl null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -4208,7 +4208,7 @@ exports[`PermissionsSummary should render the tab view when both showAccountsOnl null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -4342,7 +4342,7 @@ exports[`PermissionsSummary should render with the correct initial tab based on style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4462,7 +4462,7 @@ exports[`PermissionsSummary should render with the correct initial tab based on style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -4477,7 +4477,7 @@ exports[`PermissionsSummary should render with the correct initial tab based on style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4614,7 +4614,7 @@ exports[`PermissionsSummary should render with the correct initial tab based on style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4628,7 +4628,7 @@ exports[`PermissionsSummary should render with the correct initial tab based on style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4659,7 +4659,7 @@ exports[`PermissionsSummary should render with the correct initial tab based on style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4745,7 +4745,7 @@ exports[`PermissionsSummary should render with the correct initial tab based on style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4830,7 +4830,7 @@ exports[`PermissionsSummary should render with the correct initial tab based on style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4862,7 +4862,7 @@ exports[`PermissionsSummary should render with the correct initial tab based on style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4875,7 +4875,7 @@ exports[`PermissionsSummary should render with the correct initial tab based on style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -5015,7 +5015,7 @@ exports[`PermissionsSummary should render with the correct initial tab based on style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5047,7 +5047,7 @@ exports[`PermissionsSummary should render with the correct initial tab based on style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5059,7 +5059,7 @@ exports[`PermissionsSummary should render with the correct initial tab based on style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -5217,7 +5217,7 @@ exports[`PermissionsSummary should render with the correct initial tab based on style={ { "color": "#ca3542", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5283,7 +5283,7 @@ exports[`PermissionsSummary should render with the correct initial tab based on null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -5343,7 +5343,7 @@ exports[`PermissionsSummary should render with the correct initial tab based on null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, diff --git a/app/components/UI/Perps/Debug/HIP3DebugView.styles.ts b/app/components/UI/Perps/Debug/HIP3DebugView.styles.ts index ca8bf41d14a7..6cade4742bca 100644 --- a/app/components/UI/Perps/Debug/HIP3DebugView.styles.ts +++ b/app/components/UI/Perps/Debug/HIP3DebugView.styles.ts @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../styles/common'; import type { Theme } from '../../../../util/theme/models'; const styleSheet = (params: { theme: Theme }) => { @@ -24,7 +25,7 @@ const styleSheet = (params: { theme: Theme }) => { }, sectionTitle: { marginBottom: 12, - fontWeight: 'bold', + ...fontStyles.bold, }, button: { backgroundColor: colors.primary.default, @@ -40,7 +41,7 @@ const styleSheet = (params: { theme: Theme }) => { }, buttonText: { color: colors.primary.inverse, - fontWeight: '600', + ...fontStyles.medium, }, buttonTextSecondary: { color: colors.text.default, diff --git a/app/components/UI/Perps/Views/PerpsTransactionsView/PerpsTransactionsView.styles.ts b/app/components/UI/Perps/Views/PerpsTransactionsView/PerpsTransactionsView.styles.ts index fef64635db21..c821554dd216 100644 --- a/app/components/UI/Perps/Views/PerpsTransactionsView/PerpsTransactionsView.styles.ts +++ b/app/components/UI/Perps/Views/PerpsTransactionsView/PerpsTransactionsView.styles.ts @@ -1,4 +1,5 @@ import type { Theme } from '../../../../../util/theme/models'; +import { fontStyles } from '../../../../../styles/common'; export const styleSheet = (params: { theme: Theme }) => { const { theme } = params; @@ -40,7 +41,7 @@ export const styleSheet = (params: { theme: Theme }) => { }, sectionHeaderText: { fontSize: 16, - fontWeight: '600' as const, + ...fontStyles.medium, color: colors.text.alternative, }, transactionItem: { @@ -68,13 +69,13 @@ export const styleSheet = (params: { theme: Theme }) => { }, transactionTitle: { fontSize: 16, - fontWeight: '400' as const, + ...fontStyles.normal, color: colors.text.default, marginBottom: 4, }, transactionTitleCentered: { fontSize: 16, - fontWeight: '400' as const, + ...fontStyles.normal, color: colors.text.default, marginBottom: 0, // No margin when centered }, diff --git a/app/components/UI/Perps/components/PerpsAmountDisplay/PerpsAmountDisplay.styles.ts b/app/components/UI/Perps/components/PerpsAmountDisplay/PerpsAmountDisplay.styles.ts index e5471578673e..d235bd3405d9 100644 --- a/app/components/UI/Perps/components/PerpsAmountDisplay/PerpsAmountDisplay.styles.ts +++ b/app/components/UI/Perps/components/PerpsAmountDisplay/PerpsAmountDisplay.styles.ts @@ -1,5 +1,6 @@ import { StyleSheet } from 'react-native'; import type { Theme } from '../../../../../util/theme/models'; +import { fontStyles } from '../../../../../styles/common'; const createStyles = (colors: Theme['colors']) => StyleSheet.create({ @@ -13,18 +14,18 @@ const createStyles = (colors: Theme['colors']) => }, amountValue: { fontSize: 54, - fontWeight: '600', + ...fontStyles.medium, color: colors.text.default, }, amountValueToken: { fontSize: 54, - fontWeight: '800', + ...fontStyles.bold, letterSpacing: -0.5, lineHeight: 74, }, amountValueTokenAndroid: { fontSize: 54, - fontWeight: '500', + ...fontStyles.medium, letterSpacing: -0.5, lineHeight: 74, }, diff --git a/app/components/UI/Perps/components/PerpsBadge/PerpsBadge.styles.ts b/app/components/UI/Perps/components/PerpsBadge/PerpsBadge.styles.ts index 5037fa59f58c..d2cbb170ff9f 100644 --- a/app/components/UI/Perps/components/PerpsBadge/PerpsBadge.styles.ts +++ b/app/components/UI/Perps/components/PerpsBadge/PerpsBadge.styles.ts @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../styles/common'; import type { Theme } from '../../../../../util/theme/models'; import type { BadgeType } from './PerpsBadge.types'; @@ -66,7 +67,7 @@ export const styleSheet = (params: { }, badgeText: { fontSize: 10, - fontWeight: '600', + ...fontStyles.medium, color: style.text, letterSpacing: 0.5, }, diff --git a/app/components/UI/Perps/components/PerpsBottomSheetTooltip/__snapshots__/PerpsBottomSheetTooltip.test.tsx.snap b/app/components/UI/Perps/components/PerpsBottomSheetTooltip/__snapshots__/PerpsBottomSheetTooltip.test.tsx.snap index 6e0482d4a24a..80400c141809 100644 --- a/app/components/UI/Perps/components/PerpsBottomSheetTooltip/__snapshots__/PerpsBottomSheetTooltip.test.tsx.snap +++ b/app/components/UI/Perps/components/PerpsBottomSheetTooltip/__snapshots__/PerpsBottomSheetTooltip.test.tsx.snap @@ -156,7 +156,7 @@ exports[`PerpsBottomSheetTooltip renders correctly when visible 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -180,7 +180,7 @@ exports[`PerpsBottomSheetTooltip renders correctly when visible 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -230,7 +230,7 @@ exports[`PerpsBottomSheetTooltip renders correctly when visible 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Perps/components/PerpsCandlePeriodSelector/PerpsCandlePeriodSelector.styles.ts b/app/components/UI/Perps/components/PerpsCandlePeriodSelector/PerpsCandlePeriodSelector.styles.ts index 77ee03d9e310..861e4df48e42 100644 --- a/app/components/UI/Perps/components/PerpsCandlePeriodSelector/PerpsCandlePeriodSelector.styles.ts +++ b/app/components/UI/Perps/components/PerpsCandlePeriodSelector/PerpsCandlePeriodSelector.styles.ts @@ -1,4 +1,5 @@ import { Theme } from '../../../../../util/theme/models'; +import { fontStyles } from '../../../../../styles/common'; import { StyleSheet } from 'react-native'; export const styleSheet = (params: { theme: Theme }) => { @@ -33,7 +34,7 @@ export const styleSheet = (params: { theme: Theme }) => { }, periodText: { fontSize: 14, - fontWeight: '400', + ...fontStyles.normal, }, periodTextSelected: { color: theme.colors.text.default, @@ -59,16 +60,5 @@ export const styleSheet = (params: { theme: Theme }) => { moreButtonPressed: { opacity: 0.7, }, - moreText: { - fontSize: 14, - fontWeight: '400', - marginRight: 4, - }, - moreTextSelected: { - color: theme.colors.text.default, - }, - moreTextUnselected: { - color: theme.colors.text.alternative, - }, }); }; diff --git a/app/components/UI/Perps/components/PerpsCandlePeriodSelector/PerpsCandlePeriodSelector.tsx b/app/components/UI/Perps/components/PerpsCandlePeriodSelector/PerpsCandlePeriodSelector.tsx index 96dd70c1885f..e6de8ae619ef 100644 --- a/app/components/UI/Perps/components/PerpsCandlePeriodSelector/PerpsCandlePeriodSelector.tsx +++ b/app/components/UI/Perps/components/PerpsCandlePeriodSelector/PerpsCandlePeriodSelector.tsx @@ -1,6 +1,11 @@ import React from 'react'; import { Pressable } from 'react-native'; -import { Box, Text, TextVariant } from '@metamask/design-system-react-native'; +import { + Box, + Text, + TextColor, + TextVariant, +} from '@metamask/design-system-react-native'; import { useStyles } from '../../../../../component-library/hooks'; import { strings } from '../../../../../../locales/i18n'; import { CandlePeriod, CANDLE_PERIODS } from '../../constants/chartConfig'; @@ -105,12 +110,11 @@ const PerpsCandlePeriodSelector: React.FC = ({ > {isMorePeriodSelected ? getCandlePeriodLabel(selectedPeriod) diff --git a/app/components/UI/Perps/components/PerpsDeveloperOptionsSection/__snapshots__/PerpsDeveloperOptionsSection.test.tsx.snap b/app/components/UI/Perps/components/PerpsDeveloperOptionsSection/__snapshots__/PerpsDeveloperOptionsSection.test.tsx.snap index 2980de31cb6e..bcf4455b5c40 100644 --- a/app/components/UI/Perps/components/PerpsDeveloperOptionsSection/__snapshots__/PerpsDeveloperOptionsSection.test.tsx.snap +++ b/app/components/UI/Perps/components/PerpsDeveloperOptionsSection/__snapshots__/PerpsDeveloperOptionsSection.test.tsx.snap @@ -14,7 +14,7 @@ exports[`PerpsDeveloperOptionsSection renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -39,7 +39,7 @@ exports[`PerpsDeveloperOptionsSection renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -67,7 +67,7 @@ exports[`PerpsDeveloperOptionsSection renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Perps/components/PerpsDeveloperOptionsSection/__snapshots__/PerpsTestnetToggle.test.tsx.snap b/app/components/UI/Perps/components/PerpsDeveloperOptionsSection/__snapshots__/PerpsTestnetToggle.test.tsx.snap index b6d194cce909..7e275618cda9 100644 --- a/app/components/UI/Perps/components/PerpsDeveloperOptionsSection/__snapshots__/PerpsTestnetToggle.test.tsx.snap +++ b/app/components/UI/Perps/components/PerpsDeveloperOptionsSection/__snapshots__/PerpsTestnetToggle.test.tsx.snap @@ -16,7 +16,7 @@ exports[`PerpsTestnetToggle renders correctly with testnet network 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -44,7 +44,7 @@ exports[`PerpsTestnetToggle renders correctly with testnet network 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Perps/components/PerpsGTMModal/PerpsGTMModal.styles.ts b/app/components/UI/Perps/components/PerpsGTMModal/PerpsGTMModal.styles.ts index 463708ac0dbe..50cec6b9637a 100644 --- a/app/components/UI/Perps/components/PerpsGTMModal/PerpsGTMModal.styles.ts +++ b/app/components/UI/Perps/components/PerpsGTMModal/PerpsGTMModal.styles.ts @@ -1,5 +1,8 @@ import { Platform, StyleSheet, Dimensions } from 'react-native'; -import { colors as importedColors } from '../../../../../styles/common'; +import { + fontStyles, + colors as importedColors, +} from '../../../../../styles/common'; import { Theme } from '@metamask/design-tokens'; // Responsive scaling utilities @@ -98,7 +101,7 @@ const createStyles = ( ? 'System' : 'Roboto' : 'Geist-Regular', - fontWeight: '500', + ...fontStyles.medium, }, footerContainer: { display: 'flex', @@ -114,7 +117,7 @@ const createStyles = ( }, tryNowButtonText: { color: isDarkMode ? importedColors.btnBlack : importedColors.white, - fontWeight: '600', + ...fontStyles.medium, fontSize: scaleFont(16), }, notNowButton: { @@ -124,7 +127,7 @@ const createStyles = ( borderColor: importedColors.transparent, }, notNowButtonText: { - fontWeight: '500', + ...fontStyles.medium, fontSize: scaleFont(16), }, }); diff --git a/app/components/UI/Perps/components/PerpsLeverageBottomSheet/PerpsLeverageBottomSheet.styles.ts b/app/components/UI/Perps/components/PerpsLeverageBottomSheet/PerpsLeverageBottomSheet.styles.ts index 235993cc0331..1f1c15cf4b20 100644 --- a/app/components/UI/Perps/components/PerpsLeverageBottomSheet/PerpsLeverageBottomSheet.styles.ts +++ b/app/components/UI/Perps/components/PerpsLeverageBottomSheet/PerpsLeverageBottomSheet.styles.ts @@ -1,6 +1,7 @@ /* eslint-disable react-native/no-color-literals */ /* eslint-disable @metamask/design-tokens/color-no-hex */ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../styles/common'; import { Theme } from '../../../../../util/theme/models'; import { LEVERAGE_COLORS, @@ -21,7 +22,7 @@ export const createStyles = (colors: Theme['colors']) => }, leverageText: { fontSize: 48, - fontWeight: '600', + ...fontStyles.medium, lineHeight: 56, }, leverageTextSafe: { @@ -136,7 +137,7 @@ export const createStyles = (colors: Theme['colors']) => borderColor: colors.icon.default, }, quickSelectText: { - fontWeight: '500', + ...fontStyles.medium, }, leverageSliderContainer: { paddingVertical: 8, diff --git a/app/components/UI/Perps/components/PerpsLimitPriceBottomSheet/PerpsLimitPriceBottomSheet.styles.ts b/app/components/UI/Perps/components/PerpsLimitPriceBottomSheet/PerpsLimitPriceBottomSheet.styles.ts index 23630f4789b6..fbf0de90c962 100644 --- a/app/components/UI/Perps/components/PerpsLimitPriceBottomSheet/PerpsLimitPriceBottomSheet.styles.ts +++ b/app/components/UI/Perps/components/PerpsLimitPriceBottomSheet/PerpsLimitPriceBottomSheet.styles.ts @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../styles/common'; import { Theme } from '../../../../../util/theme/models'; export const createStyles = (colors: Theme['colors']) => @@ -31,7 +32,7 @@ export const createStyles = (colors: Theme['colors']) => }, limitPriceValue: { fontSize: 16, - fontWeight: '500', + ...fontStyles.medium, color: colors.text.default, flex: 1, }, diff --git a/app/components/UI/Perps/components/PerpsMarketHeader/PerpsMarketHeader.styles.ts b/app/components/UI/Perps/components/PerpsMarketHeader/PerpsMarketHeader.styles.ts index 2f575076b7ef..627c2dbf7af7 100644 --- a/app/components/UI/Perps/components/PerpsMarketHeader/PerpsMarketHeader.styles.ts +++ b/app/components/UI/Perps/components/PerpsMarketHeader/PerpsMarketHeader.styles.ts @@ -1,4 +1,5 @@ import { StyleSheet, ViewStyle, TextStyle } from 'react-native'; +import { fontStyles } from '../../../../../styles/common'; import type { Theme } from '../../../../../util/theme/models'; interface PerpsMarketHeaderStyles { @@ -57,7 +58,7 @@ export const styleSheet = ({ gap: 8, }, assetName: { - fontWeight: '600', + ...fontStyles.medium, }, fullscreenButton: { padding: 4, diff --git a/app/components/UI/Perps/components/PerpsMarketList/PerpsMarketList.tsx b/app/components/UI/Perps/components/PerpsMarketList/PerpsMarketList.tsx index 115844457a26..69a3354a66b6 100644 --- a/app/components/UI/Perps/components/PerpsMarketList/PerpsMarketList.tsx +++ b/app/components/UI/Perps/components/PerpsMarketList/PerpsMarketList.tsx @@ -1,5 +1,5 @@ import React, { useCallback } from 'react'; -import { View } from 'react-native'; +import { View, StyleSheet } from 'react-native'; import { FlashList } from '@shopify/flash-list'; import Text, { TextVariant, @@ -82,7 +82,10 @@ const PerpsMarketList: React.FC = ({ data={markets} renderItem={renderItem} keyExtractor={(item: PerpsMarketData) => item.symbol} - contentContainerStyle={[styles.contentContainer, contentContainerStyle]} + contentContainerStyle={StyleSheet.flatten([ + styles.contentContainer, + contentContainerStyle, + ])} keyboardShouldPersistTaps="handled" ListHeaderComponent={ListHeaderComponent} drawDistance={PERPS_MARKET_LIST_CONSTANTS.FLASH_LIST_DRAW_DISTANCE} diff --git a/app/components/UI/Perps/components/PerpsMarketSortDropdowns/PerpsMarketSortDropdowns.styles.ts b/app/components/UI/Perps/components/PerpsMarketSortDropdowns/PerpsMarketSortDropdowns.styles.ts index 13220997cdb0..f6093779cacb 100644 --- a/app/components/UI/Perps/components/PerpsMarketSortDropdowns/PerpsMarketSortDropdowns.styles.ts +++ b/app/components/UI/Perps/components/PerpsMarketSortDropdowns/PerpsMarketSortDropdowns.styles.ts @@ -1,4 +1,5 @@ import { Theme } from '../../../../../util/theme/models'; +import { fontStyles } from '../../../../../styles/common'; import { StyleSheet } from 'react-native'; export const styleSheet = (params: { theme: Theme }) => { @@ -28,7 +29,7 @@ export const styleSheet = (params: { theme: Theme }) => { }, dropdownTextActive: { color: theme.colors.primary.default, - fontWeight: '500', + ...fontStyles.medium, }, }); }; diff --git a/app/components/UI/Perps/components/PerpsMarketTabs/PerpsMarketTabs.styles.ts b/app/components/UI/Perps/components/PerpsMarketTabs/PerpsMarketTabs.styles.ts index d35c62f60b8d..a180b5478757 100644 --- a/app/components/UI/Perps/components/PerpsMarketTabs/PerpsMarketTabs.styles.ts +++ b/app/components/UI/Perps/components/PerpsMarketTabs/PerpsMarketTabs.styles.ts @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../styles/common'; import type { Theme } from '../../../../../util/theme/models'; const styleSheet = ({ theme }: { theme: Theme }) => @@ -55,7 +56,7 @@ const styleSheet = ({ theme }: { theme: Theme }) => }, statisticsValue: { fontSize: 16, - fontWeight: '600', + ...fontStyles.medium, }, emptyStateContainer: { alignItems: 'center', diff --git a/app/components/UI/Perps/components/PerpsNotificationBottomSheet/PerpsNotificationBottomSheet.styles.ts b/app/components/UI/Perps/components/PerpsNotificationBottomSheet/PerpsNotificationBottomSheet.styles.ts index 4212c387aad8..4577f3f05d87 100644 --- a/app/components/UI/Perps/components/PerpsNotificationBottomSheet/PerpsNotificationBottomSheet.styles.ts +++ b/app/components/UI/Perps/components/PerpsNotificationBottomSheet/PerpsNotificationBottomSheet.styles.ts @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../styles/common'; const createStyles = () => StyleSheet.create({ @@ -14,7 +15,7 @@ const createStyles = () => }, title: { fontSize: 24, - fontWeight: '600', + ...fontStyles.medium, textAlign: 'left', width: '100%', }, diff --git a/app/components/UI/Perps/components/PerpsOICapWarning/PerpsOICapWarning.styles.ts b/app/components/UI/Perps/components/PerpsOICapWarning/PerpsOICapWarning.styles.ts index 0020b0025857..292f1a59a6d6 100644 --- a/app/components/UI/Perps/components/PerpsOICapWarning/PerpsOICapWarning.styles.ts +++ b/app/components/UI/Perps/components/PerpsOICapWarning/PerpsOICapWarning.styles.ts @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../styles/common'; import type { Theme } from '../../../../../util/theme/models'; const styleSheet = (params: { theme: Theme }) => { @@ -26,7 +27,7 @@ const styleSheet = (params: { theme: Theme }) => { gap: 4, }, title: { - fontWeight: '600', + ...fontStyles.medium, }, description: { lineHeight: 18, diff --git a/app/components/UI/Perps/components/PerpsOpenOrderCard/PerpsOpenOrderCard.styles.ts b/app/components/UI/Perps/components/PerpsOpenOrderCard/PerpsOpenOrderCard.styles.ts index 64d429bc6c76..6769e1b88f3b 100644 --- a/app/components/UI/Perps/components/PerpsOpenOrderCard/PerpsOpenOrderCard.styles.ts +++ b/app/components/UI/Perps/components/PerpsOpenOrderCard/PerpsOpenOrderCard.styles.ts @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../styles/common'; import type { Theme } from '../../../../../util/theme/models'; const styleSheet = (params: { theme: Theme }) => { @@ -127,7 +128,7 @@ const styleSheet = (params: { theme: Theme }) => { }, activeChartText: { fontSize: 8, - fontWeight: '600', + ...fontStyles.medium, }, }); }; diff --git a/app/components/UI/Perps/components/PerpsSlider/PerpsSlider.styles.ts b/app/components/UI/Perps/components/PerpsSlider/PerpsSlider.styles.ts index 887002db27ed..98ebe43a04ab 100644 --- a/app/components/UI/Perps/components/PerpsSlider/PerpsSlider.styles.ts +++ b/app/components/UI/Perps/components/PerpsSlider/PerpsSlider.styles.ts @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../styles/common'; import type { Theme } from '../../../../../util/theme/models'; const styleSheet = (params: { theme: Theme }) => { @@ -105,7 +106,7 @@ const styleSheet = (params: { theme: Theme }) => { marginTop: 8, color: colors.text.alternative, fontSize: 14, - fontWeight: '500', + ...fontStyles.medium, }, quickValuesRow: { flexDirection: 'row', diff --git a/app/components/UI/Perps/components/PerpsTabControlBar/PerpsTabControlBar.styles.ts b/app/components/UI/Perps/components/PerpsTabControlBar/PerpsTabControlBar.styles.ts index f2d681f51a92..f6295be0817a 100644 --- a/app/components/UI/Perps/components/PerpsTabControlBar/PerpsTabControlBar.styles.ts +++ b/app/components/UI/Perps/components/PerpsTabControlBar/PerpsTabControlBar.styles.ts @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../styles/common'; import { Theme } from '../../../../../util/theme/models'; const styleSheet = (params: { theme: Theme }) => { @@ -58,7 +59,7 @@ const styleSheet = (params: { theme: Theme }) => { titleText: {}, valueText: { marginRight: 8, - fontWeight: 500, + ...fontStyles.medium, }, infoIcon: { marginLeft: 4, diff --git a/app/components/UI/Perps/utils/transactionDetailStyles.test.ts b/app/components/UI/Perps/utils/transactionDetailStyles.test.ts index b356967217d7..874598cdbea4 100644 --- a/app/components/UI/Perps/utils/transactionDetailStyles.test.ts +++ b/app/components/UI/Perps/utils/transactionDetailStyles.test.ts @@ -87,9 +87,6 @@ describe('createTransactionDetailStyles', () => { // Assert expect(styles.detailLabel.fontSize).toBe(14); expect(styles.detailValue.fontSize).toBe(14); - expect(styles.assetAmount.fontWeight).toBe('700'); - expect(styles.detailValue.fontWeight).toBe('400'); - expect(styles.profitValue.fontWeight).toBe('500'); }); it('should apply correct flex layout to detail rows', () => { diff --git a/app/components/UI/Perps/utils/transactionDetailStyles.ts b/app/components/UI/Perps/utils/transactionDetailStyles.ts index 97bf6c8a6473..917162e04f1b 100644 --- a/app/components/UI/Perps/utils/transactionDetailStyles.ts +++ b/app/components/UI/Perps/utils/transactionDetailStyles.ts @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../styles/common'; import type { Theme } from '../../../../util/theme/models'; /** @@ -42,7 +43,7 @@ export const createTransactionDetailStyles = (theme: Theme) => { borderRadius: 36, }, assetAmount: { - fontWeight: '700', + ...fontStyles.bold, color: colors.text.default, }, @@ -65,7 +66,7 @@ export const createTransactionDetailStyles = (theme: Theme) => { }, detailValue: { fontSize: 14, - fontWeight: '400', + ...fontStyles.normal, }, // Section separator sectionSeparator: { @@ -82,7 +83,7 @@ export const createTransactionDetailStyles = (theme: Theme) => { // Status-specific styles profitValue: { color: colors.success.default, - fontWeight: '500', + ...fontStyles.medium, }, buttonsContainer: { paddingVertical: 20, diff --git a/app/components/UI/PhishingModal/__snapshots__/index.test.tsx.snap b/app/components/UI/PhishingModal/__snapshots__/index.test.tsx.snap index 38c979fef39e..42d4bccd7e5c 100644 --- a/app/components/UI/PhishingModal/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/PhishingModal/__snapshots__/index.test.tsx.snap @@ -49,7 +49,7 @@ exports[`PhishingModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "marginBottom": 16, "textAlign": "left", @@ -62,7 +62,7 @@ exports[`PhishingModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "marginBottom": 20, } @@ -74,7 +74,7 @@ exports[`PhishingModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "marginBottom": 20, } @@ -144,7 +144,7 @@ exports[`PhishingModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "marginLeft": 12, } @@ -203,7 +203,7 @@ exports[`PhishingModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "marginLeft": 12, } @@ -238,7 +238,7 @@ exports[`PhishingModal should render correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Predict/views/PredictSellPreview/PredictSellPreview.styles.ts b/app/components/UI/Predict/views/PredictSellPreview/PredictSellPreview.styles.ts index 563eb1592a87..9d0b454a46cd 100644 --- a/app/components/UI/Predict/views/PredictSellPreview/PredictSellPreview.styles.ts +++ b/app/components/UI/Predict/views/PredictSellPreview/PredictSellPreview.styles.ts @@ -19,7 +19,7 @@ const styleSheet = (params: { theme: Theme }) => { }, currentValue: { fontSize: 64, - fontWeight: '500', + ...fontStyles.medium, lineHeight: 74, letterSpacing: 0, textAlign: 'center', @@ -53,7 +53,7 @@ const styleSheet = (params: { theme: Theme }) => { flexShrink: 0, color: theme.colors.text.alternative, fontSize: 14, - fontWeight: '500', + ...fontStyles.medium, }, positionIcon: { width: 40, diff --git a/app/components/UI/ProtectYourWalletModal/__snapshots__/index.test.tsx.snap b/app/components/UI/ProtectYourWalletModal/__snapshots__/index.test.tsx.snap index d42036d435de..d363f5abbe6c 100644 --- a/app/components/UI/ProtectYourWalletModal/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/ProtectYourWalletModal/__snapshots__/index.test.tsx.snap @@ -220,7 +220,7 @@ exports[`ProtectYourWalletModal render matches snapshot 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 20, "textAlign": "center", } @@ -294,7 +294,7 @@ exports[`ProtectYourWalletModal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "marginBottom": 24, "textAlign": "center", @@ -305,7 +305,7 @@ exports[`ProtectYourWalletModal render matches snapshot 1`] = ` @@ -320,7 +320,7 @@ exports[`ProtectYourWalletModal render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "marginBottom": 14, "textAlign": "center", @@ -387,7 +387,7 @@ exports[`ProtectYourWalletModal render matches snapshot 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -446,7 +446,7 @@ exports[`ProtectYourWalletModal render matches snapshot 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, diff --git a/app/components/UI/Ramp/Aggregator/Views/BuildQuote/__snapshots__/BuildQuote.test.tsx.snap b/app/components/UI/Ramp/Aggregator/Views/BuildQuote/__snapshots__/BuildQuote.test.tsx.snap index 89da8e65ebc1..576c587eab60 100644 --- a/app/components/UI/Ramp/Aggregator/Views/BuildQuote/__snapshots__/BuildQuote.test.tsx.snap +++ b/app/components/UI/Ramp/Aggregator/Views/BuildQuote/__snapshots__/BuildQuote.test.tsx.snap @@ -224,7 +224,7 @@ exports[`BuildQuote View Balance display displays balance from useBalance for no style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -667,7 +667,7 @@ exports[`BuildQuote View Balance display displays balance from useBalance for no { "color": "#121314", "flexShrink": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -735,7 +735,7 @@ exports[`BuildQuote View Balance display displays balance from useBalance for no style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -780,7 +780,7 @@ exports[`BuildQuote View Balance display displays balance from useBalance for no style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -992,7 +992,7 @@ exports[`BuildQuote View Balance display displays balance from useBalance for no style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1025,7 +1025,7 @@ exports[`BuildQuote View Balance display displays balance from useBalance for no [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -1065,14 +1065,14 @@ exports[`BuildQuote View Balance display displays balance from useBalance for no [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, { @@ -1154,7 +1154,7 @@ exports[`BuildQuote View Balance display displays balance from useBalance for no style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1173,7 +1173,7 @@ exports[`BuildQuote View Balance display displays balance from useBalance for no style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1252,7 +1252,7 @@ exports[`BuildQuote View Balance display displays balance from useBalance for no style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -1303,7 +1303,7 @@ exports[`BuildQuote View Balance display displays balance from useBalance for no [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -1343,14 +1343,14 @@ exports[`BuildQuote View Balance display displays balance from useBalance for no [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, { @@ -1432,7 +1432,7 @@ exports[`BuildQuote View Balance display displays balance from useBalance for no style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1463,7 +1463,7 @@ exports[`BuildQuote View Balance display displays balance from useBalance for no style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1567,7 +1567,7 @@ exports[`BuildQuote View Balance display displays balance from useBalance for no style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1592,7 +1592,7 @@ exports[`BuildQuote View Balance display displays balance from useBalance for no [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -1632,14 +1632,14 @@ exports[`BuildQuote View Balance display displays balance from useBalance for no [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, { @@ -1833,7 +1833,7 @@ exports[`BuildQuote View Balance display displays balance from useBalance for no }, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -1917,7 +1917,7 @@ exports[`BuildQuote View Balance display displays balance from useBalance for no [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -1981,7 +1981,7 @@ exports[`BuildQuote View Balance display displays balance from useBalance for no [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -2045,7 +2045,7 @@ exports[`BuildQuote View Balance display displays balance from useBalance for no [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -2830,7 +2830,7 @@ exports[`BuildQuote View Balance display displays balance from useBalance for no null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -3086,7 +3086,7 @@ exports[`BuildQuote View Crypto Currency Data renders a special error page if cr style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3484,7 +3484,7 @@ exports[`BuildQuote View Crypto Currency Data renders a special error page if cr style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3508,7 +3508,7 @@ exports[`BuildQuote View Crypto Currency Data renders a special error page if cr [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -3588,7 +3588,7 @@ exports[`BuildQuote View Crypto Currency Data renders a special error page if cr null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -3749,7 +3749,7 @@ exports[`BuildQuote View Crypto Currency Data renders a special error page if cr style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4147,7 +4147,7 @@ exports[`BuildQuote View Crypto Currency Data renders a special error page if cr style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -4171,7 +4171,7 @@ exports[`BuildQuote View Crypto Currency Data renders a special error page if cr [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -4251,7 +4251,7 @@ exports[`BuildQuote View Crypto Currency Data renders a special error page if cr null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -4509,7 +4509,7 @@ exports[`BuildQuote View Crypto Currency Data renders an error page when there i style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4907,7 +4907,7 @@ exports[`BuildQuote View Crypto Currency Data renders an error page when there i style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -4931,7 +4931,7 @@ exports[`BuildQuote View Crypto Currency Data renders an error page when there i [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -5011,7 +5011,7 @@ exports[`BuildQuote View Crypto Currency Data renders an error page when there i null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -5269,7 +5269,7 @@ exports[`BuildQuote View Crypto Currency Data renders the loading page when cryp style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5712,7 +5712,7 @@ exports[`BuildQuote View Crypto Currency Data renders the loading page when cryp { "color": "#121314", "flexShrink": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5780,7 +5780,7 @@ exports[`BuildQuote View Crypto Currency Data renders the loading page when cryp style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5825,7 +5825,7 @@ exports[`BuildQuote View Crypto Currency Data renders the loading page when cryp style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6043,7 +6043,7 @@ exports[`BuildQuote View Crypto Currency Data renders the loading page when cryp style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6122,7 +6122,7 @@ exports[`BuildQuote View Crypto Currency Data renders the loading page when cryp style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -6173,7 +6173,7 @@ exports[`BuildQuote View Crypto Currency Data renders the loading page when cryp [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -6213,14 +6213,14 @@ exports[`BuildQuote View Crypto Currency Data renders the loading page when cryp [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, { @@ -6302,7 +6302,7 @@ exports[`BuildQuote View Crypto Currency Data renders the loading page when cryp style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -6333,7 +6333,7 @@ exports[`BuildQuote View Crypto Currency Data renders the loading page when cryp style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6582,7 +6582,7 @@ exports[`BuildQuote View Crypto Currency Data renders the loading page when cryp }, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -6666,7 +6666,7 @@ exports[`BuildQuote View Crypto Currency Data renders the loading page when cryp [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -6730,7 +6730,7 @@ exports[`BuildQuote View Crypto Currency Data renders the loading page when cryp [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -6794,7 +6794,7 @@ exports[`BuildQuote View Crypto Currency Data renders the loading page when cryp [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -7579,7 +7579,7 @@ exports[`BuildQuote View Crypto Currency Data renders the loading page when cryp null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -7835,7 +7835,7 @@ exports[`BuildQuote View Fiat Currency Data renders an error page when there is style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -8233,7 +8233,7 @@ exports[`BuildQuote View Fiat Currency Data renders an error page when there is style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -8257,7 +8257,7 @@ exports[`BuildQuote View Fiat Currency Data renders an error page when there is [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -8337,7 +8337,7 @@ exports[`BuildQuote View Fiat Currency Data renders an error page when there is null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -8595,7 +8595,7 @@ exports[`BuildQuote View Fiat Currency Data renders the loading page when fiats style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9038,7 +9038,7 @@ exports[`BuildQuote View Fiat Currency Data renders the loading page when fiats { "color": "#121314", "flexShrink": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9106,7 +9106,7 @@ exports[`BuildQuote View Fiat Currency Data renders the loading page when fiats style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9151,7 +9151,7 @@ exports[`BuildQuote View Fiat Currency Data renders the loading page when fiats style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9369,7 +9369,7 @@ exports[`BuildQuote View Fiat Currency Data renders the loading page when fiats style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9537,7 +9537,7 @@ exports[`BuildQuote View Fiat Currency Data renders the loading page when fiats style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9568,7 +9568,7 @@ exports[`BuildQuote View Fiat Currency Data renders the loading page when fiats style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9817,7 +9817,7 @@ exports[`BuildQuote View Fiat Currency Data renders the loading page when fiats }, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -9901,7 +9901,7 @@ exports[`BuildQuote View Fiat Currency Data renders the loading page when fiats [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -9965,7 +9965,7 @@ exports[`BuildQuote View Fiat Currency Data renders the loading page when fiats [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -10029,7 +10029,7 @@ exports[`BuildQuote View Fiat Currency Data renders the loading page when fiats [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -10814,7 +10814,7 @@ exports[`BuildQuote View Fiat Currency Data renders the loading page when fiats null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -11070,7 +11070,7 @@ exports[`BuildQuote View Payment Method Data renders an error page when there is style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -11468,7 +11468,7 @@ exports[`BuildQuote View Payment Method Data renders an error page when there is style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -11492,7 +11492,7 @@ exports[`BuildQuote View Payment Method Data renders an error page when there is [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -11572,7 +11572,7 @@ exports[`BuildQuote View Payment Method Data renders an error page when there is null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -11830,7 +11830,7 @@ exports[`BuildQuote View Payment Method Data renders no icons if there are no pa style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -12273,7 +12273,7 @@ exports[`BuildQuote View Payment Method Data renders no icons if there are no pa { "color": "#121314", "flexShrink": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -12341,7 +12341,7 @@ exports[`BuildQuote View Payment Method Data renders no icons if there are no pa style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -12386,7 +12386,7 @@ exports[`BuildQuote View Payment Method Data renders no icons if there are no pa style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -12598,7 +12598,7 @@ exports[`BuildQuote View Payment Method Data renders no icons if there are no pa style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -12631,7 +12631,7 @@ exports[`BuildQuote View Payment Method Data renders no icons if there are no pa [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -12671,14 +12671,14 @@ exports[`BuildQuote View Payment Method Data renders no icons if there are no pa [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, { @@ -12760,7 +12760,7 @@ exports[`BuildQuote View Payment Method Data renders no icons if there are no pa style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -12779,7 +12779,7 @@ exports[`BuildQuote View Payment Method Data renders no icons if there are no pa style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -12858,7 +12858,7 @@ exports[`BuildQuote View Payment Method Data renders no icons if there are no pa style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -12909,7 +12909,7 @@ exports[`BuildQuote View Payment Method Data renders no icons if there are no pa [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -12949,14 +12949,14 @@ exports[`BuildQuote View Payment Method Data renders no icons if there are no pa [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, { @@ -13038,7 +13038,7 @@ exports[`BuildQuote View Payment Method Data renders no icons if there are no pa style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -13069,7 +13069,7 @@ exports[`BuildQuote View Payment Method Data renders no icons if there are no pa style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -13173,7 +13173,7 @@ exports[`BuildQuote View Payment Method Data renders no icons if there are no pa style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -13198,7 +13198,7 @@ exports[`BuildQuote View Payment Method Data renders no icons if there are no pa [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -13238,14 +13238,14 @@ exports[`BuildQuote View Payment Method Data renders no icons if there are no pa [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, { @@ -13396,7 +13396,7 @@ exports[`BuildQuote View Payment Method Data renders no icons if there are no pa }, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -13480,7 +13480,7 @@ exports[`BuildQuote View Payment Method Data renders no icons if there are no pa [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -13544,7 +13544,7 @@ exports[`BuildQuote View Payment Method Data renders no icons if there are no pa [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -13608,7 +13608,7 @@ exports[`BuildQuote View Payment Method Data renders no icons if there are no pa [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -14393,7 +14393,7 @@ exports[`BuildQuote View Payment Method Data renders no icons if there are no pa null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -14649,7 +14649,7 @@ exports[`BuildQuote View Payment Method Data renders the loading page when payme style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -15092,7 +15092,7 @@ exports[`BuildQuote View Payment Method Data renders the loading page when payme { "color": "#121314", "flexShrink": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -15160,7 +15160,7 @@ exports[`BuildQuote View Payment Method Data renders the loading page when payme style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -15205,7 +15205,7 @@ exports[`BuildQuote View Payment Method Data renders the loading page when payme style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -15417,7 +15417,7 @@ exports[`BuildQuote View Payment Method Data renders the loading page when payme style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -15450,7 +15450,7 @@ exports[`BuildQuote View Payment Method Data renders the loading page when payme [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -15490,14 +15490,14 @@ exports[`BuildQuote View Payment Method Data renders the loading page when payme [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, { @@ -15579,7 +15579,7 @@ exports[`BuildQuote View Payment Method Data renders the loading page when payme style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -15598,7 +15598,7 @@ exports[`BuildQuote View Payment Method Data renders the loading page when payme style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -15677,7 +15677,7 @@ exports[`BuildQuote View Payment Method Data renders the loading page when payme style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -15728,7 +15728,7 @@ exports[`BuildQuote View Payment Method Data renders the loading page when payme [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -15768,14 +15768,14 @@ exports[`BuildQuote View Payment Method Data renders the loading page when payme [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, { @@ -15857,7 +15857,7 @@ exports[`BuildQuote View Payment Method Data renders the loading page when payme style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -15888,7 +15888,7 @@ exports[`BuildQuote View Payment Method Data renders the loading page when payme style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -16137,7 +16137,7 @@ exports[`BuildQuote View Payment Method Data renders the loading page when payme }, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -16221,7 +16221,7 @@ exports[`BuildQuote View Payment Method Data renders the loading page when payme [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -16285,7 +16285,7 @@ exports[`BuildQuote View Payment Method Data renders the loading page when payme [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -16349,7 +16349,7 @@ exports[`BuildQuote View Payment Method Data renders the loading page when payme [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -17134,7 +17134,7 @@ exports[`BuildQuote View Payment Method Data renders the loading page when payme null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -17390,7 +17390,7 @@ exports[`BuildQuote View Regions data renders an error page when there is a regi style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -17788,7 +17788,7 @@ exports[`BuildQuote View Regions data renders an error page when there is a regi style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -17812,7 +17812,7 @@ exports[`BuildQuote View Regions data renders an error page when there is a regi [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -17892,7 +17892,7 @@ exports[`BuildQuote View Regions data renders an error page when there is a regi null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -18150,7 +18150,7 @@ exports[`BuildQuote View Regions data renders the loading page when regions are style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -18593,7 +18593,7 @@ exports[`BuildQuote View Regions data renders the loading page when regions are { "color": "#121314", "flexShrink": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -18670,7 +18670,7 @@ exports[`BuildQuote View Regions data renders the loading page when regions are style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -18888,7 +18888,7 @@ exports[`BuildQuote View Regions data renders the loading page when regions are style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -19056,7 +19056,7 @@ exports[`BuildQuote View Regions data renders the loading page when regions are style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -19087,7 +19087,7 @@ exports[`BuildQuote View Regions data renders the loading page when regions are style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -19336,7 +19336,7 @@ exports[`BuildQuote View Regions data renders the loading page when regions are }, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -19420,7 +19420,7 @@ exports[`BuildQuote View Regions data renders the loading page when regions are [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -19484,7 +19484,7 @@ exports[`BuildQuote View Regions data renders the loading page when regions are [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -19548,7 +19548,7 @@ exports[`BuildQuote View Regions data renders the loading page when regions are [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -20333,7 +20333,7 @@ exports[`BuildQuote View Regions data renders the loading page when regions are null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -20589,7 +20589,7 @@ exports[`BuildQuote View renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -21032,7 +21032,7 @@ exports[`BuildQuote View renders correctly 1`] = ` { "color": "#121314", "flexShrink": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -21100,7 +21100,7 @@ exports[`BuildQuote View renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -21145,7 +21145,7 @@ exports[`BuildQuote View renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -21357,7 +21357,7 @@ exports[`BuildQuote View renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -21390,7 +21390,7 @@ exports[`BuildQuote View renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -21430,14 +21430,14 @@ exports[`BuildQuote View renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, { @@ -21519,7 +21519,7 @@ exports[`BuildQuote View renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -21538,7 +21538,7 @@ exports[`BuildQuote View renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -21617,7 +21617,7 @@ exports[`BuildQuote View renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -21668,7 +21668,7 @@ exports[`BuildQuote View renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -21708,14 +21708,14 @@ exports[`BuildQuote View renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, { @@ -21797,7 +21797,7 @@ exports[`BuildQuote View renders correctly 1`] = ` style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -21828,7 +21828,7 @@ exports[`BuildQuote View renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -21932,7 +21932,7 @@ exports[`BuildQuote View renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -21957,7 +21957,7 @@ exports[`BuildQuote View renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -21997,14 +21997,14 @@ exports[`BuildQuote View renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, { @@ -22198,7 +22198,7 @@ exports[`BuildQuote View renders correctly 1`] = ` }, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -22282,7 +22282,7 @@ exports[`BuildQuote View renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -22346,7 +22346,7 @@ exports[`BuildQuote View renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -22410,7 +22410,7 @@ exports[`BuildQuote View renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -23195,7 +23195,7 @@ exports[`BuildQuote View renders correctly 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -23354,7 +23354,7 @@ exports[`BuildQuote View renders correctly 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -23797,7 +23797,7 @@ exports[`BuildQuote View renders correctly 2`] = ` { "color": "#121314", "flexShrink": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -23865,7 +23865,7 @@ exports[`BuildQuote View renders correctly 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -23934,7 +23934,7 @@ exports[`BuildQuote View renders correctly 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -23977,7 +23977,7 @@ exports[`BuildQuote View renders correctly 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -24189,7 +24189,7 @@ exports[`BuildQuote View renders correctly 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -24222,7 +24222,7 @@ exports[`BuildQuote View renders correctly 2`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -24262,14 +24262,14 @@ exports[`BuildQuote View renders correctly 2`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, { @@ -24351,7 +24351,7 @@ exports[`BuildQuote View renders correctly 2`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -24370,7 +24370,7 @@ exports[`BuildQuote View renders correctly 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -24449,7 +24449,7 @@ exports[`BuildQuote View renders correctly 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -24481,7 +24481,7 @@ exports[`BuildQuote View renders correctly 2`] = ` style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -24509,7 +24509,7 @@ exports[`BuildQuote View renders correctly 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -24613,7 +24613,7 @@ exports[`BuildQuote View renders correctly 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -24638,7 +24638,7 @@ exports[`BuildQuote View renders correctly 2`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -24678,14 +24678,14 @@ exports[`BuildQuote View renders correctly 2`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, { @@ -24879,7 +24879,7 @@ exports[`BuildQuote View renders correctly 2`] = ` }, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -24963,7 +24963,7 @@ exports[`BuildQuote View renders correctly 2`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -25027,7 +25027,7 @@ exports[`BuildQuote View renders correctly 2`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -25091,7 +25091,7 @@ exports[`BuildQuote View renders correctly 2`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -25155,7 +25155,7 @@ exports[`BuildQuote View renders correctly 2`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -25940,7 +25940,7 @@ exports[`BuildQuote View renders correctly 2`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -26196,7 +26196,7 @@ exports[`BuildQuote View renders correctly when sdkError is present 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -26594,7 +26594,7 @@ exports[`BuildQuote View renders correctly when sdkError is present 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -26618,7 +26618,7 @@ exports[`BuildQuote View renders correctly when sdkError is present 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -26698,7 +26698,7 @@ exports[`BuildQuote View renders correctly when sdkError is present 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -26859,7 +26859,7 @@ exports[`BuildQuote View renders correctly when sdkError is present 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -27257,7 +27257,7 @@ exports[`BuildQuote View renders correctly when sdkError is present 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -27281,7 +27281,7 @@ exports[`BuildQuote View renders correctly when sdkError is present 2`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -27361,7 +27361,7 @@ exports[`BuildQuote View renders correctly when sdkError is present 2`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, diff --git a/app/components/UI/Ramp/Aggregator/Views/Checkout/__snapshots__/Checkout.test.tsx.snap b/app/components/UI/Ramp/Aggregator/Views/Checkout/__snapshots__/Checkout.test.tsx.snap index 5ee2a6b0c01a..4f41342a1dcd 100644 --- a/app/components/UI/Ramp/Aggregator/Views/Checkout/__snapshots__/Checkout.test.tsx.snap +++ b/app/components/UI/Ramp/Aggregator/Views/Checkout/__snapshots__/Checkout.test.tsx.snap @@ -1157,7 +1157,7 @@ exports[`Checkout displays and tracks error if no url or errors 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1181,7 +1181,7 @@ exports[`Checkout displays and tracks error if no url or errors 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -1853,7 +1853,7 @@ exports[`Checkout displays sdkError when present 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1877,7 +1877,7 @@ exports[`Checkout displays sdkError when present 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -1957,7 +1957,7 @@ exports[`Checkout displays sdkError when present 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -3151,7 +3151,7 @@ exports[`Checkout handles get order error gracefully 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3175,7 +3175,7 @@ exports[`Checkout handles get order error gracefully 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -3255,7 +3255,7 @@ exports[`Checkout handles get order error gracefully 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -3906,7 +3906,7 @@ exports[`Checkout handles undefined order gracefully 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3930,7 +3930,7 @@ exports[`Checkout handles undefined order gracefully 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -4010,7 +4010,7 @@ exports[`Checkout handles undefined order gracefully 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -5204,7 +5204,7 @@ exports[`Checkout sets and displays error on http error in WebView 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -5228,7 +5228,7 @@ exports[`Checkout sets and displays error on http error in WebView 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -5308,7 +5308,7 @@ exports[`Checkout sets and displays error on http error in WebView 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -5959,7 +5959,7 @@ exports[`Checkout sets and displays error on http error in WebView for callback style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -5983,7 +5983,7 @@ exports[`Checkout sets and displays error on http error in WebView for callback [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -6063,7 +6063,7 @@ exports[`Checkout sets and displays error on http error in WebView for callback null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -6714,7 +6714,7 @@ exports[`Checkout sets error when handling url navigation state change and selec style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -6738,7 +6738,7 @@ exports[`Checkout sets error when handling url navigation state change and selec [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -6818,7 +6818,7 @@ exports[`Checkout sets error when handling url navigation state change and selec null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, diff --git a/app/components/UI/Ramp/Aggregator/Views/Modals/Settings/__snapshots__/SettingsModal.test.tsx.snap b/app/components/UI/Ramp/Aggregator/Views/Modals/Settings/__snapshots__/SettingsModal.test.tsx.snap index 362ef235ddd6..a396827204e4 100644 --- a/app/components/UI/Ramp/Aggregator/Views/Modals/Settings/__snapshots__/SettingsModal.test.tsx.snap +++ b/app/components/UI/Ramp/Aggregator/Views/Modals/Settings/__snapshots__/SettingsModal.test.tsx.snap @@ -466,7 +466,7 @@ exports[`SettingsModal renders snapshot correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -597,7 +597,7 @@ exports[`SettingsModal renders snapshot correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -684,7 +684,7 @@ exports[`SettingsModal renders snapshot correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -698,7 +698,7 @@ exports[`SettingsModal renders snapshot correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/UI/Ramp/Aggregator/Views/OrderDetails/__snapshots__/OrderDetails.test.tsx.snap b/app/components/UI/Ramp/Aggregator/Views/OrderDetails/__snapshots__/OrderDetails.test.tsx.snap index 68922e4a7b5f..671183e6a51f 100644 --- a/app/components/UI/Ramp/Aggregator/Views/OrderDetails/__snapshots__/OrderDetails.test.tsx.snap +++ b/app/components/UI/Ramp/Aggregator/Views/OrderDetails/__snapshots__/OrderDetails.test.tsx.snap @@ -224,7 +224,7 @@ exports[`OrderDetails renders a cancelled order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -519,7 +519,7 @@ exports[`OrderDetails renders a cancelled order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -534,7 +534,7 @@ exports[`OrderDetails renders a cancelled order 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -558,7 +558,7 @@ exports[`OrderDetails renders a cancelled order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -575,7 +575,7 @@ exports[`OrderDetails renders a cancelled order 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -710,7 +710,7 @@ exports[`OrderDetails renders a cancelled order 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -799,7 +799,7 @@ exports[`OrderDetails renders a cancelled order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -832,7 +832,7 @@ exports[`OrderDetails renders a cancelled order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -882,7 +882,7 @@ exports[`OrderDetails renders a cancelled order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -914,7 +914,7 @@ exports[`OrderDetails renders a cancelled order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -959,7 +959,7 @@ exports[`OrderDetails renders a cancelled order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1009,7 +1009,7 @@ exports[`OrderDetails renders a cancelled order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1041,7 +1041,7 @@ exports[`OrderDetails renders a cancelled order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1101,7 +1101,7 @@ exports[`OrderDetails renders a cancelled order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1133,7 +1133,7 @@ exports[`OrderDetails renders a cancelled order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1184,7 +1184,7 @@ exports[`OrderDetails renders a cancelled order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1218,7 +1218,7 @@ exports[`OrderDetails renders a cancelled order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1270,7 +1270,7 @@ exports[`OrderDetails renders a cancelled order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1302,7 +1302,7 @@ exports[`OrderDetails renders a cancelled order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1362,7 +1362,7 @@ exports[`OrderDetails renders a cancelled order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1394,7 +1394,7 @@ exports[`OrderDetails renders a cancelled order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1461,7 +1461,7 @@ exports[`OrderDetails renders a cancelled order 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -1719,7 +1719,7 @@ exports[`OrderDetails renders a completed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2032,7 +2032,7 @@ exports[`OrderDetails renders a completed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2047,7 +2047,7 @@ exports[`OrderDetails renders a completed order 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2071,7 +2071,7 @@ exports[`OrderDetails renders a completed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -2088,7 +2088,7 @@ exports[`OrderDetails renders a completed order 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2223,7 +2223,7 @@ exports[`OrderDetails renders a completed order 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -2312,7 +2312,7 @@ exports[`OrderDetails renders a completed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2345,7 +2345,7 @@ exports[`OrderDetails renders a completed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2395,7 +2395,7 @@ exports[`OrderDetails renders a completed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2427,7 +2427,7 @@ exports[`OrderDetails renders a completed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2472,7 +2472,7 @@ exports[`OrderDetails renders a completed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2522,7 +2522,7 @@ exports[`OrderDetails renders a completed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2554,7 +2554,7 @@ exports[`OrderDetails renders a completed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2614,7 +2614,7 @@ exports[`OrderDetails renders a completed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2646,7 +2646,7 @@ exports[`OrderDetails renders a completed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2697,7 +2697,7 @@ exports[`OrderDetails renders a completed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2731,7 +2731,7 @@ exports[`OrderDetails renders a completed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2783,7 +2783,7 @@ exports[`OrderDetails renders a completed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2815,7 +2815,7 @@ exports[`OrderDetails renders a completed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2875,7 +2875,7 @@ exports[`OrderDetails renders a completed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2907,7 +2907,7 @@ exports[`OrderDetails renders a completed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2974,7 +2974,7 @@ exports[`OrderDetails renders a completed order 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -3232,7 +3232,7 @@ exports[`OrderDetails renders a created order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3575,7 +3575,7 @@ exports[`OrderDetails renders a created order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3599,7 +3599,7 @@ exports[`OrderDetails renders a created order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -3616,7 +3616,7 @@ exports[`OrderDetails renders a created order 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3751,7 +3751,7 @@ exports[`OrderDetails renders a created order 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -3840,7 +3840,7 @@ exports[`OrderDetails renders a created order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3873,7 +3873,7 @@ exports[`OrderDetails renders a created order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3923,7 +3923,7 @@ exports[`OrderDetails renders a created order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3955,7 +3955,7 @@ exports[`OrderDetails renders a created order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4000,7 +4000,7 @@ exports[`OrderDetails renders a created order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4050,7 +4050,7 @@ exports[`OrderDetails renders a created order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4082,7 +4082,7 @@ exports[`OrderDetails renders a created order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4142,7 +4142,7 @@ exports[`OrderDetails renders a created order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4174,7 +4174,7 @@ exports[`OrderDetails renders a created order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4225,7 +4225,7 @@ exports[`OrderDetails renders a created order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4259,7 +4259,7 @@ exports[`OrderDetails renders a created order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4311,7 +4311,7 @@ exports[`OrderDetails renders a created order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4343,7 +4343,7 @@ exports[`OrderDetails renders a created order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4403,7 +4403,7 @@ exports[`OrderDetails renders a created order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4435,7 +4435,7 @@ exports[`OrderDetails renders a created order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4708,7 +4708,7 @@ exports[`OrderDetails renders a failed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5003,7 +5003,7 @@ exports[`OrderDetails renders a failed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -5018,7 +5018,7 @@ exports[`OrderDetails renders a failed order 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -5042,7 +5042,7 @@ exports[`OrderDetails renders a failed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -5059,7 +5059,7 @@ exports[`OrderDetails renders a failed order 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -5194,7 +5194,7 @@ exports[`OrderDetails renders a failed order 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -5283,7 +5283,7 @@ exports[`OrderDetails renders a failed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -5316,7 +5316,7 @@ exports[`OrderDetails renders a failed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -5366,7 +5366,7 @@ exports[`OrderDetails renders a failed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -5398,7 +5398,7 @@ exports[`OrderDetails renders a failed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -5443,7 +5443,7 @@ exports[`OrderDetails renders a failed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -5493,7 +5493,7 @@ exports[`OrderDetails renders a failed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -5525,7 +5525,7 @@ exports[`OrderDetails renders a failed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -5585,7 +5585,7 @@ exports[`OrderDetails renders a failed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -5617,7 +5617,7 @@ exports[`OrderDetails renders a failed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -5668,7 +5668,7 @@ exports[`OrderDetails renders a failed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -5702,7 +5702,7 @@ exports[`OrderDetails renders a failed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -5754,7 +5754,7 @@ exports[`OrderDetails renders a failed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -5786,7 +5786,7 @@ exports[`OrderDetails renders a failed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -5846,7 +5846,7 @@ exports[`OrderDetails renders a failed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -5878,7 +5878,7 @@ exports[`OrderDetails renders a failed order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -5945,7 +5945,7 @@ exports[`OrderDetails renders a failed order 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -6203,7 +6203,7 @@ exports[`OrderDetails renders a pending order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6546,7 +6546,7 @@ exports[`OrderDetails renders a pending order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -6570,7 +6570,7 @@ exports[`OrderDetails renders a pending order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -6587,7 +6587,7 @@ exports[`OrderDetails renders a pending order 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -6722,7 +6722,7 @@ exports[`OrderDetails renders a pending order 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -6811,7 +6811,7 @@ exports[`OrderDetails renders a pending order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -6844,7 +6844,7 @@ exports[`OrderDetails renders a pending order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -6894,7 +6894,7 @@ exports[`OrderDetails renders a pending order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -6926,7 +6926,7 @@ exports[`OrderDetails renders a pending order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -6971,7 +6971,7 @@ exports[`OrderDetails renders a pending order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -7021,7 +7021,7 @@ exports[`OrderDetails renders a pending order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -7053,7 +7053,7 @@ exports[`OrderDetails renders a pending order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -7113,7 +7113,7 @@ exports[`OrderDetails renders a pending order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -7145,7 +7145,7 @@ exports[`OrderDetails renders a pending order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -7196,7 +7196,7 @@ exports[`OrderDetails renders a pending order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -7230,7 +7230,7 @@ exports[`OrderDetails renders a pending order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -7282,7 +7282,7 @@ exports[`OrderDetails renders a pending order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -7314,7 +7314,7 @@ exports[`OrderDetails renders a pending order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -7374,7 +7374,7 @@ exports[`OrderDetails renders a pending order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -7406,7 +7406,7 @@ exports[`OrderDetails renders a pending order 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -7679,7 +7679,7 @@ exports[`OrderDetails renders an empty screen layout if there is no order 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -8138,7 +8138,7 @@ exports[`OrderDetails renders an error screen if a CREATED order cannot be polle style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -8439,7 +8439,7 @@ exports[`OrderDetails renders an error screen if a CREATED order cannot be polle style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -8463,7 +8463,7 @@ exports[`OrderDetails renders an error screen if a CREATED order cannot be polle [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -8543,7 +8543,7 @@ exports[`OrderDetails renders an error screen if a CREATED order cannot be polle null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -8801,7 +8801,7 @@ exports[`OrderDetails renders non-transacted orders 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9144,7 +9144,7 @@ exports[`OrderDetails renders non-transacted orders 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -9159,7 +9159,7 @@ exports[`OrderDetails renders non-transacted orders 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9183,7 +9183,7 @@ exports[`OrderDetails renders non-transacted orders 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -9200,7 +9200,7 @@ exports[`OrderDetails renders non-transacted orders 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9335,7 +9335,7 @@ exports[`OrderDetails renders non-transacted orders 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -9424,7 +9424,7 @@ exports[`OrderDetails renders non-transacted orders 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9457,7 +9457,7 @@ exports[`OrderDetails renders non-transacted orders 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9507,7 +9507,7 @@ exports[`OrderDetails renders non-transacted orders 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9539,7 +9539,7 @@ exports[`OrderDetails renders non-transacted orders 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9584,7 +9584,7 @@ exports[`OrderDetails renders non-transacted orders 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9634,7 +9634,7 @@ exports[`OrderDetails renders non-transacted orders 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9666,7 +9666,7 @@ exports[`OrderDetails renders non-transacted orders 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9726,7 +9726,7 @@ exports[`OrderDetails renders non-transacted orders 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9758,7 +9758,7 @@ exports[`OrderDetails renders non-transacted orders 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9809,7 +9809,7 @@ exports[`OrderDetails renders non-transacted orders 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9843,7 +9843,7 @@ exports[`OrderDetails renders non-transacted orders 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9895,7 +9895,7 @@ exports[`OrderDetails renders non-transacted orders 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9927,7 +9927,7 @@ exports[`OrderDetails renders non-transacted orders 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9987,7 +9987,7 @@ exports[`OrderDetails renders non-transacted orders 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -10019,7 +10019,7 @@ exports[`OrderDetails renders non-transacted orders 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -10098,7 +10098,7 @@ exports[`OrderDetails renders non-transacted orders 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -10357,7 +10357,7 @@ exports[`OrderDetails renders the support links if the provider has them 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -10670,7 +10670,7 @@ exports[`OrderDetails renders the support links if the provider has them 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -10685,7 +10685,7 @@ exports[`OrderDetails renders the support links if the provider has them 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -10709,7 +10709,7 @@ exports[`OrderDetails renders the support links if the provider has them 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -10726,7 +10726,7 @@ exports[`OrderDetails renders the support links if the provider has them 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -10753,7 +10753,7 @@ exports[`OrderDetails renders the support links if the provider has them 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -10888,7 +10888,7 @@ exports[`OrderDetails renders the support links if the provider has them 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -10977,7 +10977,7 @@ exports[`OrderDetails renders the support links if the provider has them 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -11010,7 +11010,7 @@ exports[`OrderDetails renders the support links if the provider has them 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -11060,7 +11060,7 @@ exports[`OrderDetails renders the support links if the provider has them 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -11092,7 +11092,7 @@ exports[`OrderDetails renders the support links if the provider has them 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -11137,7 +11137,7 @@ exports[`OrderDetails renders the support links if the provider has them 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -11154,7 +11154,7 @@ exports[`OrderDetails renders the support links if the provider has them 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -11206,7 +11206,7 @@ exports[`OrderDetails renders the support links if the provider has them 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -11238,7 +11238,7 @@ exports[`OrderDetails renders the support links if the provider has them 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -11298,7 +11298,7 @@ exports[`OrderDetails renders the support links if the provider has them 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -11330,7 +11330,7 @@ exports[`OrderDetails renders the support links if the provider has them 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -11381,7 +11381,7 @@ exports[`OrderDetails renders the support links if the provider has them 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -11415,7 +11415,7 @@ exports[`OrderDetails renders the support links if the provider has them 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -11467,7 +11467,7 @@ exports[`OrderDetails renders the support links if the provider has them 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -11499,7 +11499,7 @@ exports[`OrderDetails renders the support links if the provider has them 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -11559,7 +11559,7 @@ exports[`OrderDetails renders the support links if the provider has them 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -11591,7 +11591,7 @@ exports[`OrderDetails renders the support links if the provider has them 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -11658,7 +11658,7 @@ exports[`OrderDetails renders the support links if the provider has them 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -11916,7 +11916,7 @@ exports[`OrderDetails renders transacted orders that do not have timeDescription style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -12259,7 +12259,7 @@ exports[`OrderDetails renders transacted orders that do not have timeDescription style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -12283,7 +12283,7 @@ exports[`OrderDetails renders transacted orders that do not have timeDescription style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -12300,7 +12300,7 @@ exports[`OrderDetails renders transacted orders that do not have timeDescription style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -12435,7 +12435,7 @@ exports[`OrderDetails renders transacted orders that do not have timeDescription [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -12524,7 +12524,7 @@ exports[`OrderDetails renders transacted orders that do not have timeDescription style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -12557,7 +12557,7 @@ exports[`OrderDetails renders transacted orders that do not have timeDescription style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -12607,7 +12607,7 @@ exports[`OrderDetails renders transacted orders that do not have timeDescription style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -12639,7 +12639,7 @@ exports[`OrderDetails renders transacted orders that do not have timeDescription style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -12684,7 +12684,7 @@ exports[`OrderDetails renders transacted orders that do not have timeDescription style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -12734,7 +12734,7 @@ exports[`OrderDetails renders transacted orders that do not have timeDescription style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -12766,7 +12766,7 @@ exports[`OrderDetails renders transacted orders that do not have timeDescription style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -12826,7 +12826,7 @@ exports[`OrderDetails renders transacted orders that do not have timeDescription style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -12858,7 +12858,7 @@ exports[`OrderDetails renders transacted orders that do not have timeDescription style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -12909,7 +12909,7 @@ exports[`OrderDetails renders transacted orders that do not have timeDescription style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -12943,7 +12943,7 @@ exports[`OrderDetails renders transacted orders that do not have timeDescription style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -12995,7 +12995,7 @@ exports[`OrderDetails renders transacted orders that do not have timeDescription style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -13027,7 +13027,7 @@ exports[`OrderDetails renders transacted orders that do not have timeDescription style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -13087,7 +13087,7 @@ exports[`OrderDetails renders transacted orders that do not have timeDescription style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -13119,7 +13119,7 @@ exports[`OrderDetails renders transacted orders that do not have timeDescription style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -13392,7 +13392,7 @@ exports[`OrderDetails renders transacted orders that have timeDescriptionPending style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -13735,7 +13735,7 @@ exports[`OrderDetails renders transacted orders that have timeDescriptionPending style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -13750,7 +13750,7 @@ exports[`OrderDetails renders transacted orders that have timeDescriptionPending style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -13774,7 +13774,7 @@ exports[`OrderDetails renders transacted orders that have timeDescriptionPending style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -13791,7 +13791,7 @@ exports[`OrderDetails renders transacted orders that have timeDescriptionPending style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -13926,7 +13926,7 @@ exports[`OrderDetails renders transacted orders that have timeDescriptionPending [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -14015,7 +14015,7 @@ exports[`OrderDetails renders transacted orders that have timeDescriptionPending style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -14048,7 +14048,7 @@ exports[`OrderDetails renders transacted orders that have timeDescriptionPending style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -14098,7 +14098,7 @@ exports[`OrderDetails renders transacted orders that have timeDescriptionPending style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -14130,7 +14130,7 @@ exports[`OrderDetails renders transacted orders that have timeDescriptionPending style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -14175,7 +14175,7 @@ exports[`OrderDetails renders transacted orders that have timeDescriptionPending style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -14225,7 +14225,7 @@ exports[`OrderDetails renders transacted orders that have timeDescriptionPending style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -14257,7 +14257,7 @@ exports[`OrderDetails renders transacted orders that have timeDescriptionPending style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -14317,7 +14317,7 @@ exports[`OrderDetails renders transacted orders that have timeDescriptionPending style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -14349,7 +14349,7 @@ exports[`OrderDetails renders transacted orders that have timeDescriptionPending style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -14400,7 +14400,7 @@ exports[`OrderDetails renders transacted orders that have timeDescriptionPending style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -14434,7 +14434,7 @@ exports[`OrderDetails renders transacted orders that have timeDescriptionPending style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -14486,7 +14486,7 @@ exports[`OrderDetails renders transacted orders that have timeDescriptionPending style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -14518,7 +14518,7 @@ exports[`OrderDetails renders transacted orders that have timeDescriptionPending style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -14578,7 +14578,7 @@ exports[`OrderDetails renders transacted orders that have timeDescriptionPending style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -14610,7 +14610,7 @@ exports[`OrderDetails renders transacted orders that have timeDescriptionPending style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/UI/Ramp/Aggregator/Views/OrdersList/__snapshots__/OrdersList.test.tsx.snap b/app/components/UI/Ramp/Aggregator/Views/OrdersList/__snapshots__/OrdersList.test.tsx.snap index 65fc53f7cfe6..f6c7d7f4868b 100644 --- a/app/components/UI/Ramp/Aggregator/Views/OrdersList/__snapshots__/OrdersList.test.tsx.snap +++ b/app/components/UI/Ramp/Aggregator/Views/OrdersList/__snapshots__/OrdersList.test.tsx.snap @@ -781,7 +781,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -931,7 +931,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -945,7 +945,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -978,7 +978,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -994,7 +994,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1047,7 +1047,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1197,7 +1197,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1211,7 +1211,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1244,7 +1244,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1260,7 +1260,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1313,7 +1313,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1463,7 +1463,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1477,7 +1477,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1510,7 +1510,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1526,7 +1526,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1579,7 +1579,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1729,7 +1729,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1743,7 +1743,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1776,7 +1776,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1792,7 +1792,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1845,7 +1845,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1995,7 +1995,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2009,7 +2009,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2042,7 +2042,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2058,7 +2058,7 @@ exports[`OrdersList renders buy only correctly when pressing buy filter 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2880,7 +2880,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3030,7 +3030,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3044,7 +3044,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3077,7 +3077,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3093,7 +3093,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3146,7 +3146,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3296,7 +3296,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3310,7 +3310,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3343,7 +3343,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3359,7 +3359,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3412,7 +3412,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3562,7 +3562,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3576,7 +3576,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3609,7 +3609,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3625,7 +3625,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3678,7 +3678,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3828,7 +3828,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3842,7 +3842,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3875,7 +3875,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3891,7 +3891,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3944,7 +3944,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4094,7 +4094,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4108,7 +4108,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4141,7 +4141,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4157,7 +4157,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4210,7 +4210,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4360,7 +4360,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4374,7 +4374,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4407,7 +4407,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4423,7 +4423,7 @@ exports[`OrdersList renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -6493,7 +6493,7 @@ exports[`OrdersList renders sell only correctly when pressing sell filter 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -6643,7 +6643,7 @@ exports[`OrdersList renders sell only correctly when pressing sell filter 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6657,7 +6657,7 @@ exports[`OrdersList renders sell only correctly when pressing sell filter 1`] = style={ { "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -6690,7 +6690,7 @@ exports[`OrdersList renders sell only correctly when pressing sell filter 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6706,7 +6706,7 @@ exports[`OrdersList renders sell only correctly when pressing sell filter 1`] = style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -7414,7 +7414,7 @@ exports[`OrdersList resets filter to all after other filter was set 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -7564,7 +7564,7 @@ exports[`OrdersList resets filter to all after other filter was set 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -7578,7 +7578,7 @@ exports[`OrdersList resets filter to all after other filter was set 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -7611,7 +7611,7 @@ exports[`OrdersList resets filter to all after other filter was set 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -7627,7 +7627,7 @@ exports[`OrdersList resets filter to all after other filter was set 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -8449,7 +8449,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -8599,7 +8599,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -8613,7 +8613,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -8646,7 +8646,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -8662,7 +8662,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -8715,7 +8715,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -8865,7 +8865,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -8879,7 +8879,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -8912,7 +8912,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -8928,7 +8928,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -8981,7 +8981,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9131,7 +9131,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9145,7 +9145,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9178,7 +9178,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9194,7 +9194,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9247,7 +9247,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9397,7 +9397,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9411,7 +9411,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9444,7 +9444,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9460,7 +9460,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9513,7 +9513,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9663,7 +9663,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9677,7 +9677,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9710,7 +9710,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9726,7 +9726,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9779,7 +9779,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9929,7 +9929,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9943,7 +9943,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9976,7 +9976,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9992,7 +9992,7 @@ exports[`OrdersList resets filter to all after other filter was set 2`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/UI/Ramp/Aggregator/Views/Quotes/__snapshots__/Quotes.test.tsx.snap b/app/components/UI/Ramp/Aggregator/Views/Quotes/__snapshots__/Quotes.test.tsx.snap index 7bdddbc3751a..50c25826272d 100644 --- a/app/components/UI/Ramp/Aggregator/Views/Quotes/__snapshots__/Quotes.test.tsx.snap +++ b/app/components/UI/Ramp/Aggregator/Views/Quotes/__snapshots__/Quotes.test.tsx.snap @@ -748,7 +748,7 @@ exports[`Quotes custom action renders correctly after animation with the recomme style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1195,7 +1195,7 @@ exports[`Quotes custom action renders correctly after animation with the recomme style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1271,7 +1271,7 @@ exports[`Quotes custom action renders correctly after animation with the recomme [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -1313,14 +1313,14 @@ exports[`Quotes custom action renders correctly after animation with the recomme [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -1555,7 +1555,7 @@ exports[`Quotes custom action renders correctly after animation with the recomme null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -1619,7 +1619,7 @@ exports[`Quotes custom action renders correctly after animation with the recomme style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1870,7 +1870,7 @@ exports[`Quotes renders animation on first fetching 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2303,7 +2303,7 @@ exports[`Quotes renders animation on first fetching 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3062,7 +3062,7 @@ exports[`Quotes renders correctly after animation with expanded quotes 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3490,7 +3490,7 @@ exports[`Quotes renders correctly after animation with expanded quotes 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3603,7 +3603,7 @@ exports[`Quotes renders correctly after animation with expanded quotes 2`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -3645,14 +3645,14 @@ exports[`Quotes renders correctly after animation with expanded quotes 2`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -3710,7 +3710,7 @@ exports[`Quotes renders correctly after animation with expanded quotes 2`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -3886,9 +3886,8 @@ exports[`Quotes renders correctly after animation with expanded quotes 2`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 12, - "fontWeight": "bold", "letterSpacing": 0.25, "lineHeight": 20, "textTransform": "uppercase", @@ -3975,7 +3974,7 @@ exports[`Quotes renders correctly after animation with expanded quotes 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -4009,7 +4008,7 @@ exports[`Quotes renders correctly after animation with expanded quotes 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -4085,7 +4084,7 @@ exports[`Quotes renders correctly after animation with expanded quotes 2`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -4200,9 +4199,8 @@ exports[`Quotes renders correctly after animation with expanded quotes 2`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 12, - "fontWeight": "bold", "letterSpacing": 0.25, "lineHeight": 20, "textTransform": "uppercase", @@ -4232,9 +4230,8 @@ exports[`Quotes renders correctly after animation with expanded quotes 2`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 12, - "fontWeight": "bold", "letterSpacing": 0.25, "lineHeight": 20, "textTransform": "uppercase", @@ -4320,7 +4317,7 @@ exports[`Quotes renders correctly after animation with expanded quotes 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -4354,7 +4351,7 @@ exports[`Quotes renders correctly after animation with expanded quotes 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -4430,7 +4427,7 @@ exports[`Quotes renders correctly after animation with expanded quotes 2`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -4590,7 +4587,7 @@ exports[`Quotes renders correctly after animation with expanded quotes 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -4624,7 +4621,7 @@ exports[`Quotes renders correctly after animation with expanded quotes 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -4700,7 +4697,7 @@ exports[`Quotes renders correctly after animation with expanded quotes 2`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -4969,7 +4966,7 @@ exports[`Quotes renders correctly after animation with the recommended quote 1`] style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5416,7 +5413,7 @@ exports[`Quotes renders correctly after animation with the recommended quote 1`] style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5492,7 +5489,7 @@ exports[`Quotes renders correctly after animation with the recommended quote 1`] [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -5534,14 +5531,14 @@ exports[`Quotes renders correctly after animation with the recommended quote 1`] [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -5694,9 +5691,8 @@ exports[`Quotes renders correctly after animation with the recommended quote 1`] style={ { "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 12, - "fontWeight": "bold", "letterSpacing": 0.25, "lineHeight": 20, "textTransform": "uppercase", @@ -5726,9 +5722,8 @@ exports[`Quotes renders correctly after animation with the recommended quote 1`] style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 12, - "fontWeight": "bold", "letterSpacing": 0.25, "lineHeight": 20, "textTransform": "uppercase", @@ -5815,7 +5810,7 @@ exports[`Quotes renders correctly after animation with the recommended quote 1`] style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -5849,7 +5844,7 @@ exports[`Quotes renders correctly after animation with the recommended quote 1`] style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -5925,7 +5920,7 @@ exports[`Quotes renders correctly after animation with the recommended quote 1`] null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -5990,7 +5985,7 @@ exports[`Quotes renders correctly after animation with the recommended quote 1`] style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6241,7 +6236,7 @@ exports[`Quotes renders correctly after animation without quotes 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6720,7 +6715,7 @@ exports[`Quotes renders correctly after animation without quotes 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -6744,7 +6739,7 @@ exports[`Quotes renders correctly after animation without quotes 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -6824,7 +6819,7 @@ exports[`Quotes renders correctly after animation without quotes 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -7082,7 +7077,7 @@ exports[`Quotes renders correctly when fetching quotes errors 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -7561,7 +7556,7 @@ exports[`Quotes renders correctly when fetching quotes errors 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -7585,7 +7580,7 @@ exports[`Quotes renders correctly when fetching quotes errors 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -7665,7 +7660,7 @@ exports[`Quotes renders correctly when fetching quotes errors 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -7923,7 +7918,7 @@ exports[`Quotes renders correctly with sdkError 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -8402,7 +8397,7 @@ exports[`Quotes renders correctly with sdkError 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -8426,7 +8421,7 @@ exports[`Quotes renders correctly with sdkError 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -8506,7 +8501,7 @@ exports[`Quotes renders correctly with sdkError 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -8764,7 +8759,7 @@ exports[`Quotes renders quotes expired screen 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9243,7 +9238,7 @@ exports[`Quotes renders quotes expired screen 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -9267,7 +9262,7 @@ exports[`Quotes renders quotes expired screen 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -9347,7 +9342,7 @@ exports[`Quotes renders quotes expired screen 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -9401,7 +9396,7 @@ exports[`Timer component renders correctly with isFetchingQuotes=false, pollingC [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -9443,14 +9438,14 @@ exports[`Timer component renders correctly with isFetchingQuotes=false, pollingC [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -9511,7 +9506,7 @@ exports[`Timer component renders correctly with isFetchingQuotes=false, pollingC [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -9553,14 +9548,14 @@ exports[`Timer component renders correctly with isFetchingQuotes=false, pollingC [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -9621,7 +9616,7 @@ exports[`Timer component renders correctly with isFetchingQuotes=false, pollingC [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -9663,14 +9658,14 @@ exports[`Timer component renders correctly with isFetchingQuotes=false, pollingC [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -9731,7 +9726,7 @@ exports[`Timer component renders correctly with isFetchingQuotes=false, pollingC [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -9773,14 +9768,14 @@ exports[`Timer component renders correctly with isFetchingQuotes=false, pollingC [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -9841,7 +9836,7 @@ exports[`Timer component renders correctly with isFetchingQuotes=false, pollingC [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -9883,14 +9878,14 @@ exports[`Timer component renders correctly with isFetchingQuotes=false, pollingC [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -9954,7 +9949,7 @@ exports[`Timer component renders correctly with isFetchingQuotes=true, pollingCy [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -10014,7 +10009,7 @@ exports[`Timer component renders correctly with isFetchingQuotes=true, pollingCy [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -10074,7 +10069,7 @@ exports[`Timer component renders correctly with isFetchingQuotes=true, pollingCy [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -10134,7 +10129,7 @@ exports[`Timer component renders correctly with isFetchingQuotes=true, pollingCy [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, diff --git a/app/components/UI/Ramp/Aggregator/Views/SendTransaction/SendTransaction.styles.ts b/app/components/UI/Ramp/Aggregator/Views/SendTransaction/SendTransaction.styles.ts index 6727e76c8935..4793ad62a60a 100644 --- a/app/components/UI/Ramp/Aggregator/Views/SendTransaction/SendTransaction.styles.ts +++ b/app/components/UI/Ramp/Aggregator/Views/SendTransaction/SendTransaction.styles.ts @@ -1,5 +1,6 @@ import { Theme } from '../../../../../../util/theme/models'; import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../../styles/common'; const styleSheet = (_params: { theme: Theme }) => StyleSheet.create({ @@ -16,7 +17,7 @@ const styleSheet = (_params: { theme: Theme }) => alignItems: 'center', }, normal: { - fontWeight: 'normal', + ...fontStyles.normal, }, paymentMethodDestination: { flexDirection: 'row', diff --git a/app/components/UI/Ramp/Aggregator/Views/SendTransaction/__snapshots__/SendTransaction.test.tsx.snap b/app/components/UI/Ramp/Aggregator/Views/SendTransaction/__snapshots__/SendTransaction.test.tsx.snap index 05edc904e23f..8be274fbb0e9 100644 --- a/app/components/UI/Ramp/Aggregator/Views/SendTransaction/__snapshots__/SendTransaction.test.tsx.snap +++ b/app/components/UI/Ramp/Aggregator/Views/SendTransaction/__snapshots__/SendTransaction.test.tsx.snap @@ -224,7 +224,7 @@ exports[`SendTransaction View renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -504,9 +504,8 @@ exports[`SendTransaction View renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, - "fontWeight": "normal", "letterSpacing": 0, "lineHeight": 24, } @@ -519,7 +518,7 @@ exports[`SendTransaction View renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -558,7 +557,7 @@ exports[`SendTransaction View renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -695,9 +694,8 @@ exports[`SendTransaction View renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, - "fontWeight": "normal", "letterSpacing": 0, "lineHeight": 24, } @@ -742,7 +740,7 @@ exports[`SendTransaction View renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -792,7 +790,7 @@ exports[`SendTransaction View renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1043,7 +1041,7 @@ exports[`SendTransaction View renders correctly for custom action payment method style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1323,9 +1321,8 @@ exports[`SendTransaction View renders correctly for custom action payment method style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, - "fontWeight": "normal", "letterSpacing": 0, "lineHeight": 24, } @@ -1338,7 +1335,7 @@ exports[`SendTransaction View renders correctly for custom action payment method style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1381,7 +1378,7 @@ exports[`SendTransaction View renders correctly for custom action payment method style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1479,7 +1476,7 @@ exports[`SendTransaction View renders correctly for custom action payment method style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1529,7 +1526,7 @@ exports[`SendTransaction View renders correctly for custom action payment method style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1780,7 +1777,7 @@ exports[`SendTransaction View renders correctly for token 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2060,9 +2057,8 @@ exports[`SendTransaction View renders correctly for token 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, - "fontWeight": "normal", "letterSpacing": 0, "lineHeight": 24, } @@ -2075,7 +2071,7 @@ exports[`SendTransaction View renders correctly for token 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2118,7 +2114,7 @@ exports[`SendTransaction View renders correctly for token 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2255,9 +2251,8 @@ exports[`SendTransaction View renders correctly for token 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, - "fontWeight": "normal", "letterSpacing": 0, "lineHeight": 24, } @@ -2302,7 +2297,7 @@ exports[`SendTransaction View renders correctly for token 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2352,7 +2347,7 @@ exports[`SendTransaction View renders correctly for token 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Aggregator/Views/Settings/__snapshots__/ActivationKeyForm.test.tsx.snap b/app/components/UI/Ramp/Aggregator/Views/Settings/__snapshots__/ActivationKeyForm.test.tsx.snap index 5c0ee1994478..aea99bbb6307 100644 --- a/app/components/UI/Ramp/Aggregator/Views/Settings/__snapshots__/ActivationKeyForm.test.tsx.snap +++ b/app/components/UI/Ramp/Aggregator/Views/Settings/__snapshots__/ActivationKeyForm.test.tsx.snap @@ -227,7 +227,7 @@ exports[`AddActivationKey renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -476,7 +476,7 @@ exports[`AddActivationKey renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -502,7 +502,7 @@ exports[`AddActivationKey renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -581,7 +581,7 @@ exports[`AddActivationKey renders correctly 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -614,7 +614,7 @@ exports[`AddActivationKey renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -695,7 +695,7 @@ exports[`AddActivationKey renders correctly 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -755,7 +755,7 @@ exports[`AddActivationKey renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -794,7 +794,7 @@ exports[`AddActivationKey renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Aggregator/Views/Settings/__snapshots__/Settings.test.tsx.snap b/app/components/UI/Ramp/Aggregator/Views/Settings/__snapshots__/Settings.test.tsx.snap index 7d0c073b2f6c..dfea838b328d 100644 --- a/app/components/UI/Ramp/Aggregator/Views/Settings/__snapshots__/Settings.test.tsx.snap +++ b/app/components/UI/Ramp/Aggregator/Views/Settings/__snapshots__/Settings.test.tsx.snap @@ -227,7 +227,7 @@ exports[`Settings Activation Keys renders correctly when is loading 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -504,7 +504,7 @@ exports[`Settings Activation Keys renders correctly when is loading 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -543,7 +543,7 @@ exports[`Settings Activation Keys renders correctly when is loading 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -575,7 +575,7 @@ exports[`Settings Activation Keys renders correctly when is loading 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -615,7 +615,7 @@ exports[`Settings Activation Keys renders correctly when is loading 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -643,7 +643,7 @@ exports[`Settings Activation Keys renders correctly when is loading 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -655,7 +655,7 @@ exports[`Settings Activation Keys renders correctly when is loading 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -669,7 +669,7 @@ exports[`Settings Activation Keys renders correctly when is loading 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -699,7 +699,7 @@ exports[`Settings Activation Keys renders correctly when is loading 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -781,7 +781,7 @@ exports[`Settings Activation Keys renders correctly when is loading 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -796,7 +796,7 @@ exports[`Settings Activation Keys renders correctly when is loading 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1000,7 +1000,7 @@ exports[`Settings Activation Keys renders correctly when is loading 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1015,7 +1015,7 @@ exports[`Settings Activation Keys renders correctly when is loading 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1189,7 +1189,7 @@ exports[`Settings Activation Keys renders correctly when is loading 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1446,7 +1446,7 @@ exports[`Settings Activation Keys renders correctly when there are no keys 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1723,7 +1723,7 @@ exports[`Settings Activation Keys renders correctly when there are no keys 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1762,7 +1762,7 @@ exports[`Settings Activation Keys renders correctly when there are no keys 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1794,7 +1794,7 @@ exports[`Settings Activation Keys renders correctly when there are no keys 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1834,7 +1834,7 @@ exports[`Settings Activation Keys renders correctly when there are no keys 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1862,7 +1862,7 @@ exports[`Settings Activation Keys renders correctly when there are no keys 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1874,7 +1874,7 @@ exports[`Settings Activation Keys renders correctly when there are no keys 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1888,7 +1888,7 @@ exports[`Settings Activation Keys renders correctly when there are no keys 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1915,7 +1915,7 @@ exports[`Settings Activation Keys renders correctly when there are no keys 1`] = style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1966,7 +1966,7 @@ exports[`Settings Activation Keys renders correctly when there are no keys 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2223,7 +2223,7 @@ exports[`Settings Region renders correctly when region is not set 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2500,7 +2500,7 @@ exports[`Settings Region renders correctly when region is not set 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2539,7 +2539,7 @@ exports[`Settings Region renders correctly when region is not set 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2571,7 +2571,7 @@ exports[`Settings Region renders correctly when region is not set 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2829,7 +2829,7 @@ exports[`Settings Region renders correctly when region is set 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3106,7 +3106,7 @@ exports[`Settings Region renders correctly when region is set 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3145,7 +3145,7 @@ exports[`Settings Region renders correctly when region is set 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3177,7 +3177,7 @@ exports[`Settings Region renders correctly when region is set 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3217,7 +3217,7 @@ exports[`Settings Region renders correctly when region is set 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3473,7 +3473,7 @@ exports[`Settings renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3750,7 +3750,7 @@ exports[`Settings renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3789,7 +3789,7 @@ exports[`Settings renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3821,7 +3821,7 @@ exports[`Settings renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3861,7 +3861,7 @@ exports[`Settings renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4117,7 +4117,7 @@ exports[`Settings renders correctly for internal builds 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -4394,7 +4394,7 @@ exports[`Settings renders correctly for internal builds 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -4433,7 +4433,7 @@ exports[`Settings renders correctly for internal builds 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4465,7 +4465,7 @@ exports[`Settings renders correctly for internal builds 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4505,7 +4505,7 @@ exports[`Settings renders correctly for internal builds 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4533,7 +4533,7 @@ exports[`Settings renders correctly for internal builds 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4545,7 +4545,7 @@ exports[`Settings renders correctly for internal builds 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -4559,7 +4559,7 @@ exports[`Settings renders correctly for internal builds 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4586,7 +4586,7 @@ exports[`Settings renders correctly for internal builds 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4668,7 +4668,7 @@ exports[`Settings renders correctly for internal builds 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4683,7 +4683,7 @@ exports[`Settings renders correctly for internal builds 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4887,7 +4887,7 @@ exports[`Settings renders correctly for internal builds 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4902,7 +4902,7 @@ exports[`Settings renders correctly for internal builds 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5075,7 +5075,7 @@ exports[`Settings renders correctly for internal builds 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Aggregator/components/FiatSelectorModal/__snapshots__/FiatSelectorModal.test.tsx.snap b/app/components/UI/Ramp/Aggregator/components/FiatSelectorModal/__snapshots__/FiatSelectorModal.test.tsx.snap index c947ebb7b878..c8d36495026e 100644 --- a/app/components/UI/Ramp/Aggregator/components/FiatSelectorModal/__snapshots__/FiatSelectorModal.test.tsx.snap +++ b/app/components/UI/Ramp/Aggregator/components/FiatSelectorModal/__snapshots__/FiatSelectorModal.test.tsx.snap @@ -466,7 +466,7 @@ exports[`FiatSelectorModal renders the modal with currency list 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -616,7 +616,7 @@ exports[`FiatSelectorModal renders the modal with currency list 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -739,7 +739,7 @@ exports[`FiatSelectorModal renders the modal with currency list 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -753,7 +753,7 @@ exports[`FiatSelectorModal renders the modal with currency list 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -816,7 +816,7 @@ exports[`FiatSelectorModal renders the modal with currency list 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -830,7 +830,7 @@ exports[`FiatSelectorModal renders the modal with currency list 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -893,7 +893,7 @@ exports[`FiatSelectorModal renders the modal with currency list 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -907,7 +907,7 @@ exports[`FiatSelectorModal renders the modal with currency list 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1404,7 +1404,7 @@ exports[`FiatSelectorModal search displays filtered currencies when search strin style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1554,7 +1554,7 @@ exports[`FiatSelectorModal search displays filtered currencies when search strin "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -1677,7 +1677,7 @@ exports[`FiatSelectorModal search displays filtered currencies when search strin style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1691,7 +1691,7 @@ exports[`FiatSelectorModal search displays filtered currencies when search strin style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1754,7 +1754,7 @@ exports[`FiatSelectorModal search displays filtered currencies when search strin style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1768,7 +1768,7 @@ exports[`FiatSelectorModal search displays filtered currencies when search strin style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1831,7 +1831,7 @@ exports[`FiatSelectorModal search displays filtered currencies when search strin style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1845,7 +1845,7 @@ exports[`FiatSelectorModal search displays filtered currencies when search strin style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2342,7 +2342,7 @@ exports[`FiatSelectorModal search displays filtered currencies when search strin style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2492,7 +2492,7 @@ exports[`FiatSelectorModal search displays filtered currencies when search strin "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -2615,7 +2615,7 @@ exports[`FiatSelectorModal search displays filtered currencies when search strin style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2629,7 +2629,7 @@ exports[`FiatSelectorModal search displays filtered currencies when search strin style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2692,7 +2692,7 @@ exports[`FiatSelectorModal search displays filtered currencies when search strin style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2706,7 +2706,7 @@ exports[`FiatSelectorModal search displays filtered currencies when search strin style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2769,7 +2769,7 @@ exports[`FiatSelectorModal search displays filtered currencies when search strin style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2783,7 +2783,7 @@ exports[`FiatSelectorModal search displays filtered currencies when search strin style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3280,7 +3280,7 @@ exports[`FiatSelectorModal search displays max 20 results 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3430,7 +3430,7 @@ exports[`FiatSelectorModal search displays max 20 results 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -3553,7 +3553,7 @@ exports[`FiatSelectorModal search displays max 20 results 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3567,7 +3567,7 @@ exports[`FiatSelectorModal search displays max 20 results 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3630,7 +3630,7 @@ exports[`FiatSelectorModal search displays max 20 results 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3644,7 +3644,7 @@ exports[`FiatSelectorModal search displays max 20 results 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3707,7 +3707,7 @@ exports[`FiatSelectorModal search displays max 20 results 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3721,7 +3721,7 @@ exports[`FiatSelectorModal search displays max 20 results 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Aggregator/components/IncompatibleAccountTokenModal/__snapshots__/IncompatibleAccountTokenModal.test.tsx.snap b/app/components/UI/Ramp/Aggregator/components/IncompatibleAccountTokenModal/__snapshots__/IncompatibleAccountTokenModal.test.tsx.snap index c3a0d3a3e459..578fa008a0c2 100644 --- a/app/components/UI/Ramp/Aggregator/components/IncompatibleAccountTokenModal/__snapshots__/IncompatibleAccountTokenModal.test.tsx.snap +++ b/app/components/UI/Ramp/Aggregator/components/IncompatibleAccountTokenModal/__snapshots__/IncompatibleAccountTokenModal.test.tsx.snap @@ -466,7 +466,7 @@ exports[`IncompatibleAccountTokenModal renders the modal with the correct title style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -535,7 +535,7 @@ exports[`IncompatibleAccountTokenModal renders the modal with the correct title style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -570,7 +570,7 @@ exports[`IncompatibleAccountTokenModal renders the modal with the correct title style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Aggregator/components/OrderListItem/__snapshots__/OrderListItem.test.tsx.snap b/app/components/UI/Ramp/Aggregator/components/OrderListItem/__snapshots__/OrderListItem.test.tsx.snap index ac695c963902..8106ffd75430 100644 --- a/app/components/UI/Ramp/Aggregator/components/OrderListItem/__snapshots__/OrderListItem.test.tsx.snap +++ b/app/components/UI/Ramp/Aggregator/components/OrderListItem/__snapshots__/OrderListItem.test.tsx.snap @@ -22,7 +22,7 @@ exports[`OrderListItem should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -172,7 +172,7 @@ exports[`OrderListItem should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -186,7 +186,7 @@ exports[`OrderListItem should render correctly 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -219,7 +219,7 @@ exports[`OrderListItem should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -235,7 +235,7 @@ exports[`OrderListItem should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -271,7 +271,7 @@ exports[`OrderListItem should render correctly 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -421,7 +421,7 @@ exports[`OrderListItem should render correctly 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -435,7 +435,7 @@ exports[`OrderListItem should render correctly 2`] = ` style={ { "color": "#ca3542", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -468,7 +468,7 @@ exports[`OrderListItem should render correctly 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -484,7 +484,7 @@ exports[`OrderListItem should render correctly 2`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -520,7 +520,7 @@ exports[`OrderListItem should render correctly 3`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -670,7 +670,7 @@ exports[`OrderListItem should render correctly 3`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -684,7 +684,7 @@ exports[`OrderListItem should render correctly 3`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -717,7 +717,7 @@ exports[`OrderListItem should render correctly 3`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -733,7 +733,7 @@ exports[`OrderListItem should render correctly 3`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -769,7 +769,7 @@ exports[`OrderListItem should render correctly 4`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -919,7 +919,7 @@ exports[`OrderListItem should render correctly 4`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -933,7 +933,7 @@ exports[`OrderListItem should render correctly 4`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -966,7 +966,7 @@ exports[`OrderListItem should render correctly 4`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -982,7 +982,7 @@ exports[`OrderListItem should render correctly 4`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1018,7 +1018,7 @@ exports[`OrderListItem should render correctly 5`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1168,7 +1168,7 @@ exports[`OrderListItem should render correctly 5`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1182,7 +1182,7 @@ exports[`OrderListItem should render correctly 5`] = ` style={ { "color": "#ca3542", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1215,7 +1215,7 @@ exports[`OrderListItem should render correctly 5`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1231,7 +1231,7 @@ exports[`OrderListItem should render correctly 5`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1267,7 +1267,7 @@ exports[`OrderListItem should render correctly 6`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1417,7 +1417,7 @@ exports[`OrderListItem should render correctly 6`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1431,7 +1431,7 @@ exports[`OrderListItem should render correctly 6`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1464,7 +1464,7 @@ exports[`OrderListItem should render correctly 6`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1480,7 +1480,7 @@ exports[`OrderListItem should render correctly 6`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1516,7 +1516,7 @@ exports[`OrderListItem should render correctly 7`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1666,7 +1666,7 @@ exports[`OrderListItem should render correctly 7`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1680,7 +1680,7 @@ exports[`OrderListItem should render correctly 7`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1713,7 +1713,7 @@ exports[`OrderListItem should render correctly 7`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1729,7 +1729,7 @@ exports[`OrderListItem should render correctly 7`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1765,7 +1765,7 @@ exports[`OrderListItem should render correctly 8`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1915,7 +1915,7 @@ exports[`OrderListItem should render correctly 8`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1929,7 +1929,7 @@ exports[`OrderListItem should render correctly 8`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1962,7 +1962,7 @@ exports[`OrderListItem should render correctly 8`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1978,7 +1978,7 @@ exports[`OrderListItem should render correctly 8`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2014,7 +2014,7 @@ exports[`OrderListItem should render correctly 9`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2107,7 +2107,7 @@ exports[`OrderListItem should render correctly 9`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2121,7 +2121,7 @@ exports[`OrderListItem should render correctly 9`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2154,7 +2154,7 @@ exports[`OrderListItem should render correctly 9`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2170,7 +2170,7 @@ exports[`OrderListItem should render correctly 9`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2206,7 +2206,7 @@ exports[`OrderListItem should render correctly 10`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2299,7 +2299,7 @@ exports[`OrderListItem should render correctly 10`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2313,7 +2313,7 @@ exports[`OrderListItem should render correctly 10`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2346,7 +2346,7 @@ exports[`OrderListItem should render correctly 10`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2362,7 +2362,7 @@ exports[`OrderListItem should render correctly 10`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2398,7 +2398,7 @@ exports[`OrderListItem should render correctly 11`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2548,7 +2548,7 @@ exports[`OrderListItem should render correctly 11`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2562,7 +2562,7 @@ exports[`OrderListItem should render correctly 11`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2595,7 +2595,7 @@ exports[`OrderListItem should render correctly 11`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2611,7 +2611,7 @@ exports[`OrderListItem should render correctly 11`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/UI/Ramp/Aggregator/components/PaymentMethodSelectorModal/__snapshots__/PaymentMethodSelectorModal.test.tsx.snap b/app/components/UI/Ramp/Aggregator/components/PaymentMethodSelectorModal/__snapshots__/PaymentMethodSelectorModal.test.tsx.snap index a3ef707256cd..dfb0b92df583 100644 --- a/app/components/UI/Ramp/Aggregator/components/PaymentMethodSelectorModal/__snapshots__/PaymentMethodSelectorModal.test.tsx.snap +++ b/app/components/UI/Ramp/Aggregator/components/PaymentMethodSelectorModal/__snapshots__/PaymentMethodSelectorModal.test.tsx.snap @@ -466,7 +466,7 @@ exports[`PaymentMethodSelectorModal renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -661,7 +661,7 @@ exports[`PaymentMethodSelectorModal renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -676,7 +676,7 @@ exports[`PaymentMethodSelectorModal renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -739,7 +739,7 @@ exports[`PaymentMethodSelectorModal renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -776,7 +776,7 @@ exports[`PaymentMethodSelectorModal renders correctly 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -790,7 +790,7 @@ exports[`PaymentMethodSelectorModal renders correctly 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -804,7 +804,7 @@ exports[`PaymentMethodSelectorModal renders correctly 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -943,7 +943,7 @@ exports[`PaymentMethodSelectorModal renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -958,7 +958,7 @@ exports[`PaymentMethodSelectorModal renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1021,7 +1021,7 @@ exports[`PaymentMethodSelectorModal renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1058,7 +1058,7 @@ exports[`PaymentMethodSelectorModal renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1072,7 +1072,7 @@ exports[`PaymentMethodSelectorModal renders correctly 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1086,7 +1086,7 @@ exports[`PaymentMethodSelectorModal renders correctly 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1116,7 +1116,7 @@ exports[`PaymentMethodSelectorModal renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1611,7 +1611,7 @@ exports[`PaymentMethodSelectorModal renders for sell flow 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1806,7 +1806,7 @@ exports[`PaymentMethodSelectorModal renders for sell flow 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1821,7 +1821,7 @@ exports[`PaymentMethodSelectorModal renders for sell flow 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1884,7 +1884,7 @@ exports[`PaymentMethodSelectorModal renders for sell flow 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1921,7 +1921,7 @@ exports[`PaymentMethodSelectorModal renders for sell flow 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1935,7 +1935,7 @@ exports[`PaymentMethodSelectorModal renders for sell flow 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1949,7 +1949,7 @@ exports[`PaymentMethodSelectorModal renders for sell flow 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2088,7 +2088,7 @@ exports[`PaymentMethodSelectorModal renders for sell flow 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2103,7 +2103,7 @@ exports[`PaymentMethodSelectorModal renders for sell flow 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2166,7 +2166,7 @@ exports[`PaymentMethodSelectorModal renders for sell flow 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2203,7 +2203,7 @@ exports[`PaymentMethodSelectorModal renders for sell flow 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2217,7 +2217,7 @@ exports[`PaymentMethodSelectorModal renders for sell flow 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2231,7 +2231,7 @@ exports[`PaymentMethodSelectorModal renders for sell flow 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2261,7 +2261,7 @@ exports[`PaymentMethodSelectorModal renders for sell flow 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2756,7 +2756,7 @@ exports[`PaymentMethodSelectorModal renders without disclaimer when selected pay style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2949,7 +2949,7 @@ exports[`PaymentMethodSelectorModal renders without disclaimer when selected pay style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2964,7 +2964,7 @@ exports[`PaymentMethodSelectorModal renders without disclaimer when selected pay style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3027,7 +3027,7 @@ exports[`PaymentMethodSelectorModal renders without disclaimer when selected pay style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3064,7 +3064,7 @@ exports[`PaymentMethodSelectorModal renders without disclaimer when selected pay style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3078,7 +3078,7 @@ exports[`PaymentMethodSelectorModal renders without disclaimer when selected pay style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3092,7 +3092,7 @@ exports[`PaymentMethodSelectorModal renders without disclaimer when selected pay style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3233,7 +3233,7 @@ exports[`PaymentMethodSelectorModal renders without disclaimer when selected pay style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3248,7 +3248,7 @@ exports[`PaymentMethodSelectorModal renders without disclaimer when selected pay style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3311,7 +3311,7 @@ exports[`PaymentMethodSelectorModal renders without disclaimer when selected pay style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3348,7 +3348,7 @@ exports[`PaymentMethodSelectorModal renders without disclaimer when selected pay style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3362,7 +3362,7 @@ exports[`PaymentMethodSelectorModal renders without disclaimer when selected pay style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3376,7 +3376,7 @@ exports[`PaymentMethodSelectorModal renders without disclaimer when selected pay style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Aggregator/components/RegionSelectorModal/__snapshots__/RegionSelectorModal.test.tsx.snap b/app/components/UI/Ramp/Aggregator/components/RegionSelectorModal/__snapshots__/RegionSelectorModal.test.tsx.snap index eba9d2fb081b..fd669def8c03 100644 --- a/app/components/UI/Ramp/Aggregator/components/RegionSelectorModal/__snapshots__/RegionSelectorModal.test.tsx.snap +++ b/app/components/UI/Ramp/Aggregator/components/RegionSelectorModal/__snapshots__/RegionSelectorModal.test.tsx.snap @@ -466,7 +466,7 @@ exports[`RegionSelectorModal clears search when clear button is pressed 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -535,7 +535,7 @@ exports[`RegionSelectorModal clears search when clear button is pressed 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -640,7 +640,7 @@ exports[`RegionSelectorModal clears search when clear button is pressed 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -813,7 +813,7 @@ exports[`RegionSelectorModal clears search when clear button is pressed 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -829,7 +829,7 @@ exports[`RegionSelectorModal clears search when clear button is pressed 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1328,7 +1328,7 @@ exports[`RegionSelectorModal clears search when clear button is pressed 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1397,7 +1397,7 @@ exports[`RegionSelectorModal clears search when clear button is pressed 2`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -1502,7 +1502,7 @@ exports[`RegionSelectorModal clears search when clear button is pressed 2`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -1694,7 +1694,7 @@ exports[`RegionSelectorModal clears search when clear button is pressed 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1710,7 +1710,7 @@ exports[`RegionSelectorModal clears search when clear button is pressed 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1790,7 +1790,7 @@ exports[`RegionSelectorModal clears search when clear button is pressed 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1806,7 +1806,7 @@ exports[`RegionSelectorModal clears search when clear button is pressed 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1886,7 +1886,7 @@ exports[`RegionSelectorModal clears search when clear button is pressed 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1902,7 +1902,7 @@ exports[`RegionSelectorModal clears search when clear button is pressed 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2013,7 +2013,7 @@ exports[`RegionSelectorModal clears search when clear button is pressed 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2029,7 +2029,7 @@ exports[`RegionSelectorModal clears search when clear button is pressed 2`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2528,7 +2528,7 @@ exports[`RegionSelectorModal filters regions based on search input 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2597,7 +2597,7 @@ exports[`RegionSelectorModal filters regions based on search input 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -2702,7 +2702,7 @@ exports[`RegionSelectorModal filters regions based on search input 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -2875,7 +2875,7 @@ exports[`RegionSelectorModal filters regions based on search input 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2891,7 +2891,7 @@ exports[`RegionSelectorModal filters regions based on search input 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3390,7 +3390,7 @@ exports[`RegionSelectorModal handles empty regions list gracefully 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3459,7 +3459,7 @@ exports[`RegionSelectorModal handles empty regions list gracefully 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -3564,7 +3564,7 @@ exports[`RegionSelectorModal handles empty regions list gracefully 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -3627,7 +3627,7 @@ exports[`RegionSelectorModal handles empty regions list gracefully 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -4120,7 +4120,7 @@ exports[`RegionSelectorModal handles undefined regions gracefully 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -4189,7 +4189,7 @@ exports[`RegionSelectorModal handles undefined regions gracefully 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -4294,7 +4294,7 @@ exports[`RegionSelectorModal handles undefined regions gracefully 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -4357,7 +4357,7 @@ exports[`RegionSelectorModal handles undefined regions gracefully 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -4884,7 +4884,7 @@ exports[`RegionSelectorModal navigates back to country view when back button is style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -4953,7 +4953,7 @@ exports[`RegionSelectorModal navigates back to country view when back button is style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -5058,7 +5058,7 @@ exports[`RegionSelectorModal navigates back to country view when back button is "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -5187,7 +5187,7 @@ exports[`RegionSelectorModal navigates back to country view when back button is style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -5203,7 +5203,7 @@ exports[`RegionSelectorModal navigates back to country view when back button is style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -5702,7 +5702,7 @@ exports[`RegionSelectorModal navigates back to country view when back button is style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -5771,7 +5771,7 @@ exports[`RegionSelectorModal navigates back to country view when back button is style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -5876,7 +5876,7 @@ exports[`RegionSelectorModal navigates back to country view when back button is "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -6068,7 +6068,7 @@ exports[`RegionSelectorModal navigates back to country view when back button is style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -6084,7 +6084,7 @@ exports[`RegionSelectorModal navigates back to country view when back button is style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -6164,7 +6164,7 @@ exports[`RegionSelectorModal navigates back to country view when back button is style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -6180,7 +6180,7 @@ exports[`RegionSelectorModal navigates back to country view when back button is style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -6260,7 +6260,7 @@ exports[`RegionSelectorModal navigates back to country view when back button is style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -6276,7 +6276,7 @@ exports[`RegionSelectorModal navigates back to country view when back button is style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -6387,7 +6387,7 @@ exports[`RegionSelectorModal navigates back to country view when back button is style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -6403,7 +6403,7 @@ exports[`RegionSelectorModal navigates back to country view when back button is style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -6902,7 +6902,7 @@ exports[`RegionSelectorModal renders the modal with region list 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -6971,7 +6971,7 @@ exports[`RegionSelectorModal renders the modal with region list 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -7076,7 +7076,7 @@ exports[`RegionSelectorModal renders the modal with region list 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -7268,7 +7268,7 @@ exports[`RegionSelectorModal renders the modal with region list 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -7284,7 +7284,7 @@ exports[`RegionSelectorModal renders the modal with region list 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -7364,7 +7364,7 @@ exports[`RegionSelectorModal renders the modal with region list 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -7380,7 +7380,7 @@ exports[`RegionSelectorModal renders the modal with region list 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -7460,7 +7460,7 @@ exports[`RegionSelectorModal renders the modal with region list 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -7476,7 +7476,7 @@ exports[`RegionSelectorModal renders the modal with region list 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -7587,7 +7587,7 @@ exports[`RegionSelectorModal renders the modal with region list 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -7603,7 +7603,7 @@ exports[`RegionSelectorModal renders the modal with region list 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -8102,7 +8102,7 @@ exports[`RegionSelectorModal renders the modal with selected region in list 1`] style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -8171,7 +8171,7 @@ exports[`RegionSelectorModal renders the modal with selected region in list 1`] style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -8276,7 +8276,7 @@ exports[`RegionSelectorModal renders the modal with selected region in list 1`] "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -8469,7 +8469,7 @@ exports[`RegionSelectorModal renders the modal with selected region in list 1`] style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -8485,7 +8485,7 @@ exports[`RegionSelectorModal renders the modal with selected region in list 1`] style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -8592,7 +8592,7 @@ exports[`RegionSelectorModal renders the modal with selected region in list 1`] style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -8608,7 +8608,7 @@ exports[`RegionSelectorModal renders the modal with selected region in list 1`] style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -8688,7 +8688,7 @@ exports[`RegionSelectorModal renders the modal with selected region in list 1`] style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -8704,7 +8704,7 @@ exports[`RegionSelectorModal renders the modal with selected region in list 1`] style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -8815,7 +8815,7 @@ exports[`RegionSelectorModal renders the modal with selected region in list 1`] style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -8831,7 +8831,7 @@ exports[`RegionSelectorModal renders the modal with selected region in list 1`] style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -9330,7 +9330,7 @@ exports[`RegionSelectorModal renders the modal with selected state in list 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -9399,7 +9399,7 @@ exports[`RegionSelectorModal renders the modal with selected state in list 1`] = style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -9504,7 +9504,7 @@ exports[`RegionSelectorModal renders the modal with selected state in list 1`] = "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -9697,7 +9697,7 @@ exports[`RegionSelectorModal renders the modal with selected state in list 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -9713,7 +9713,7 @@ exports[`RegionSelectorModal renders the modal with selected state in list 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -9793,7 +9793,7 @@ exports[`RegionSelectorModal renders the modal with selected state in list 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -9809,7 +9809,7 @@ exports[`RegionSelectorModal renders the modal with selected state in list 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -9889,7 +9889,7 @@ exports[`RegionSelectorModal renders the modal with selected state in list 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -9905,7 +9905,7 @@ exports[`RegionSelectorModal renders the modal with selected state in list 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -10043,7 +10043,7 @@ exports[`RegionSelectorModal renders the modal with selected state in list 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -10059,7 +10059,7 @@ exports[`RegionSelectorModal renders the modal with selected state in list 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -10558,7 +10558,7 @@ exports[`RegionSelectorModal shows empty state when search returns no results 1` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -10627,7 +10627,7 @@ exports[`RegionSelectorModal shows empty state when search returns no results 1` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -10732,7 +10732,7 @@ exports[`RegionSelectorModal shows empty state when search returns no results 1` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -10836,7 +10836,7 @@ exports[`RegionSelectorModal shows empty state when search returns no results 1` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Aggregator/components/TokenSelectModal/__snapshots__/TokenSelectModal.test.tsx.snap b/app/components/UI/Ramp/Aggregator/components/TokenSelectModal/__snapshots__/TokenSelectModal.test.tsx.snap index 3f4d764628a5..833a8b0cf55f 100644 --- a/app/components/UI/Ramp/Aggregator/components/TokenSelectModal/__snapshots__/TokenSelectModal.test.tsx.snap +++ b/app/components/UI/Ramp/Aggregator/components/TokenSelectModal/__snapshots__/TokenSelectModal.test.tsx.snap @@ -466,7 +466,7 @@ exports[`TokenSelectModal renders the modal with token list 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -681,7 +681,7 @@ exports[`TokenSelectModal renders the modal with token list 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -802,7 +802,7 @@ exports[`TokenSelectModal renders the modal with token list 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -1092,7 +1092,7 @@ exports[`TokenSelectModal renders the modal with token list 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1106,7 +1106,7 @@ exports[`TokenSelectModal renders the modal with token list 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1313,7 +1313,7 @@ exports[`TokenSelectModal renders the modal with token list 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1327,7 +1327,7 @@ exports[`TokenSelectModal renders the modal with token list 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1534,7 +1534,7 @@ exports[`TokenSelectModal renders the modal with token list 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1548,7 +1548,7 @@ exports[`TokenSelectModal renders the modal with token list 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1755,7 +1755,7 @@ exports[`TokenSelectModal renders the modal with token list 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1769,7 +1769,7 @@ exports[`TokenSelectModal renders the modal with token list 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Aggregator/components/UnsupportedRegionModal/__snapshots__/UnsupportedRegionModal.test.tsx.snap b/app/components/UI/Ramp/Aggregator/components/UnsupportedRegionModal/__snapshots__/UnsupportedRegionModal.test.tsx.snap index 74b577b2dbfa..3dd8127817eb 100644 --- a/app/components/UI/Ramp/Aggregator/components/UnsupportedRegionModal/__snapshots__/UnsupportedRegionModal.test.tsx.snap +++ b/app/components/UI/Ramp/Aggregator/components/UnsupportedRegionModal/__snapshots__/UnsupportedRegionModal.test.tsx.snap @@ -435,7 +435,7 @@ exports[`UnsupportedRegionModal renders correctly for buy flow 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -458,7 +458,7 @@ exports[`UnsupportedRegionModal renders correctly for buy flow 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -481,7 +481,7 @@ exports[`UnsupportedRegionModal renders correctly for buy flow 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -495,7 +495,7 @@ exports[`UnsupportedRegionModal renders correctly for buy flow 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -514,7 +514,7 @@ exports[`UnsupportedRegionModal renders correctly for buy flow 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -560,7 +560,7 @@ exports[`UnsupportedRegionModal renders correctly for buy flow 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1021,7 +1021,7 @@ exports[`UnsupportedRegionModal renders correctly for sell flow 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1044,7 +1044,7 @@ exports[`UnsupportedRegionModal renders correctly for sell flow 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1067,7 +1067,7 @@ exports[`UnsupportedRegionModal renders correctly for sell flow 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1081,7 +1081,7 @@ exports[`UnsupportedRegionModal renders correctly for sell flow 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1100,7 +1100,7 @@ exports[`UnsupportedRegionModal renders correctly for sell flow 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1146,7 +1146,7 @@ exports[`UnsupportedRegionModal renders correctly for sell flow 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Aggregator/components/__snapshots__/AccountSelector.test.tsx.snap b/app/components/UI/Ramp/Aggregator/components/__snapshots__/AccountSelector.test.tsx.snap index c28d187da45e..8cab46df5add 100644 --- a/app/components/UI/Ramp/Aggregator/components/__snapshots__/AccountSelector.test.tsx.snap +++ b/app/components/UI/Ramp/Aggregator/components/__snapshots__/AccountSelector.test.tsx.snap @@ -51,7 +51,7 @@ exports[`AccountSelector renders correctly with selected address 1`] = ` { "color": "#121314", "flexShrink": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Aggregator/components/__snapshots__/AmountInput.test.tsx.snap b/app/components/UI/Ramp/Aggregator/components/__snapshots__/AmountInput.test.tsx.snap index 2034530ba38e..5ed6cbb7eba3 100644 --- a/app/components/UI/Ramp/Aggregator/components/__snapshots__/AmountInput.test.tsx.snap +++ b/app/components/UI/Ramp/Aggregator/components/__snapshots__/AmountInput.test.tsx.snap @@ -7,7 +7,7 @@ exports[`AmountInput renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -85,7 +85,7 @@ exports[`AmountInput renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -111,7 +111,7 @@ exports[`AmountInput renders correctly with currency selector 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -189,7 +189,7 @@ exports[`AmountInput renders correctly with currency selector 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -240,7 +240,7 @@ exports[`AmountInput renders correctly with currency selector 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -280,14 +280,14 @@ exports[`AmountInput renders correctly with currency selector 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, { @@ -362,7 +362,7 @@ exports[`AmountInput renders loading state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -476,7 +476,7 @@ exports[`AmountInput renders loading state correctly with currency selector 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Aggregator/components/__snapshots__/AssetSelectorButton.test.tsx.snap b/app/components/UI/Ramp/Aggregator/components/__snapshots__/AssetSelectorButton.test.tsx.snap index 56f66ab20c54..011af9cb6dd3 100644 --- a/app/components/UI/Ramp/Aggregator/components/__snapshots__/AssetSelectorButton.test.tsx.snap +++ b/app/components/UI/Ramp/Aggregator/components/__snapshots__/AssetSelectorButton.test.tsx.snap @@ -7,7 +7,7 @@ exports[`AssetSelectorButton renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -98,7 +98,7 @@ exports[`AssetSelectorButton renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -131,7 +131,7 @@ exports[`AssetSelectorButton renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -171,14 +171,14 @@ exports[`AssetSelectorButton renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, { @@ -253,7 +253,7 @@ exports[`AssetSelectorButton renders correctly without icon 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -319,7 +319,7 @@ exports[`AssetSelectorButton renders correctly without icon 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -352,7 +352,7 @@ exports[`AssetSelectorButton renders correctly without icon 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -392,14 +392,14 @@ exports[`AssetSelectorButton renders correctly without icon 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, { @@ -474,7 +474,7 @@ exports[`AssetSelectorButton renders loading state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Aggregator/components/__snapshots__/PaymentMethodSelector.test.tsx.snap b/app/components/UI/Ramp/Aggregator/components/__snapshots__/PaymentMethodSelector.test.tsx.snap index fb0cd6deb146..4e74acc100de 100644 --- a/app/components/UI/Ramp/Aggregator/components/__snapshots__/PaymentMethodSelector.test.tsx.snap +++ b/app/components/UI/Ramp/Aggregator/components/__snapshots__/PaymentMethodSelector.test.tsx.snap @@ -7,7 +7,7 @@ exports[`PaymentMethodSelector renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -95,7 +95,7 @@ exports[`PaymentMethodSelector renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -120,7 +120,7 @@ exports[`PaymentMethodSelector renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -160,14 +160,14 @@ exports[`PaymentMethodSelector renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, { @@ -287,7 +287,7 @@ exports[`PaymentMethodSelector renders correctly if there are no icons 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -375,7 +375,7 @@ exports[`PaymentMethodSelector renders correctly if there are no icons 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -400,7 +400,7 @@ exports[`PaymentMethodSelector renders correctly if there are no icons 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -440,14 +440,14 @@ exports[`PaymentMethodSelector renders correctly if there are no icons 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, { @@ -538,7 +538,7 @@ exports[`PaymentMethodSelector renders loading state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/Views/AdditionalVerification/AdditionalVerification.styles.ts b/app/components/UI/Ramp/Deposit/Views/AdditionalVerification/AdditionalVerification.styles.ts index eca48ef362cb..0bfde9a3326f 100644 --- a/app/components/UI/Ramp/Deposit/Views/AdditionalVerification/AdditionalVerification.styles.ts +++ b/app/components/UI/Ramp/Deposit/Views/AdditionalVerification/AdditionalVerification.styles.ts @@ -1,4 +1,5 @@ import { Dimensions, StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../../styles/common'; import { Theme } from '../../../../../../util/theme/models'; const screenWidth = Dimensions.get('window').width; @@ -12,7 +13,7 @@ const styleSheet = (_params: { theme: Theme }) => }, title: { marginTop: 24, - fontWeight: 'bold', + ...fontStyles.bold, }, paragraph: { marginTop: 16, diff --git a/app/components/UI/Ramp/Deposit/Views/AdditionalVerification/__snapshots__/AdditionalVerification.test.tsx.snap b/app/components/UI/Ramp/Deposit/Views/AdditionalVerification/__snapshots__/AdditionalVerification.test.tsx.snap index 1c5aa3d7a5b2..4cb73488d1da 100644 --- a/app/components/UI/Ramp/Deposit/Views/AdditionalVerification/__snapshots__/AdditionalVerification.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/Views/AdditionalVerification/__snapshots__/AdditionalVerification.test.tsx.snap @@ -224,7 +224,7 @@ exports[`AdditionalVerification Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -583,9 +583,8 @@ exports[`AdditionalVerification Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 32, "marginTop": 24, @@ -599,7 +598,7 @@ exports[`AdditionalVerification Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -614,7 +613,7 @@ exports[`AdditionalVerification Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -667,7 +666,7 @@ exports[`AdditionalVerification Component render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/Views/BankDetails/__snapshots__/BankDetails.test.tsx.snap b/app/components/UI/Ramp/Deposit/Views/BankDetails/__snapshots__/BankDetails.test.tsx.snap index 54252d68ec3d..799b6e7bc29b 100644 --- a/app/components/UI/Ramp/Deposit/Views/BankDetails/__snapshots__/BankDetails.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/Views/BankDetails/__snapshots__/BankDetails.test.tsx.snap @@ -224,7 +224,7 @@ exports[`BankDetails Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -603,7 +603,7 @@ exports[`BankDetails Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -617,7 +617,7 @@ exports[`BankDetails Component render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -631,7 +631,7 @@ exports[`BankDetails Component render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -664,7 +664,7 @@ exports[`BankDetails Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -692,7 +692,7 @@ exports[`BankDetails Component render matches snapshot 1`] = ` "color": "#686e7d", "flex": 1, "flexWrap": "wrap", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -735,7 +735,7 @@ exports[`BankDetails Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -763,7 +763,7 @@ exports[`BankDetails Component render matches snapshot 1`] = ` "color": "#686e7d", "flex": 1, "flexWrap": "wrap", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -806,7 +806,7 @@ exports[`BankDetails Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -834,7 +834,7 @@ exports[`BankDetails Component render matches snapshot 1`] = ` "color": "#686e7d", "flex": 1, "flexWrap": "wrap", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -880,7 +880,7 @@ exports[`BankDetails Component render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -993,7 +993,7 @@ exports[`BankDetails Component render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -1044,7 +1044,7 @@ exports[`BankDetails Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1084,7 +1084,7 @@ exports[`BankDetails Component render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1336,7 +1336,7 @@ exports[`BankDetails Component render matches snapshot with bank info shown 1`] style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1715,7 +1715,7 @@ exports[`BankDetails Component render matches snapshot with bank info shown 1`] style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1729,7 +1729,7 @@ exports[`BankDetails Component render matches snapshot with bank info shown 1`] style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1743,7 +1743,7 @@ exports[`BankDetails Component render matches snapshot with bank info shown 1`] style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1776,7 +1776,7 @@ exports[`BankDetails Component render matches snapshot with bank info shown 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1804,7 +1804,7 @@ exports[`BankDetails Component render matches snapshot with bank info shown 1`] "color": "#686e7d", "flex": 1, "flexWrap": "wrap", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1847,7 +1847,7 @@ exports[`BankDetails Component render matches snapshot with bank info shown 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1875,7 +1875,7 @@ exports[`BankDetails Component render matches snapshot with bank info shown 1`] "color": "#686e7d", "flex": 1, "flexWrap": "wrap", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1918,7 +1918,7 @@ exports[`BankDetails Component render matches snapshot with bank info shown 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1946,7 +1946,7 @@ exports[`BankDetails Component render matches snapshot with bank info shown 1`] "color": "#686e7d", "flex": 1, "flexWrap": "wrap", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1989,7 +1989,7 @@ exports[`BankDetails Component render matches snapshot with bank info shown 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2017,7 +2017,7 @@ exports[`BankDetails Component render matches snapshot with bank info shown 1`] "color": "#686e7d", "flex": 1, "flexWrap": "wrap", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2060,7 +2060,7 @@ exports[`BankDetails Component render matches snapshot with bank info shown 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2088,7 +2088,7 @@ exports[`BankDetails Component render matches snapshot with bank info shown 1`] "color": "#686e7d", "flex": 1, "flexWrap": "wrap", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2131,7 +2131,7 @@ exports[`BankDetails Component render matches snapshot with bank info shown 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2159,7 +2159,7 @@ exports[`BankDetails Component render matches snapshot with bank info shown 1`] "color": "#686e7d", "flex": 1, "flexWrap": "wrap", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2205,7 +2205,7 @@ exports[`BankDetails Component render matches snapshot with bank info shown 1`] style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2318,7 +2318,7 @@ exports[`BankDetails Component render matches snapshot with bank info shown 1`] style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -2369,7 +2369,7 @@ exports[`BankDetails Component render matches snapshot with bank info shown 1`] style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2409,7 +2409,7 @@ exports[`BankDetails Component render matches snapshot with bank info shown 1`] style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/Views/BasicInfo/__snapshots__/BasicInfo.test.tsx.snap b/app/components/UI/Ramp/Deposit/Views/BasicInfo/__snapshots__/BasicInfo.test.tsx.snap index 0ecf3cbe46b1..8906862935b1 100644 --- a/app/components/UI/Ramp/Deposit/Views/BasicInfo/__snapshots__/BasicInfo.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/Views/BasicInfo/__snapshots__/BasicInfo.test.tsx.snap @@ -224,7 +224,7 @@ exports[`BasicInfo Component navigates to address page when form is valid and co style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -692,7 +692,7 @@ exports[`BasicInfo Component navigates to address page when form is valid and co style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -708,7 +708,7 @@ exports[`BasicInfo Component navigates to address page when form is valid and co style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -745,7 +745,7 @@ exports[`BasicInfo Component navigates to address page when form is valid and co style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -827,7 +827,7 @@ exports[`BasicInfo Component navigates to address page when form is valid and co "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -863,7 +863,7 @@ exports[`BasicInfo Component navigates to address page when form is valid and co style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -945,7 +945,7 @@ exports[`BasicInfo Component navigates to address page when form is valid and co "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -980,7 +980,7 @@ exports[`BasicInfo Component navigates to address page when form is valid and co style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1060,7 +1060,7 @@ exports[`BasicInfo Component navigates to address page when form is valid and co style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1074,7 +1074,7 @@ exports[`BasicInfo Component navigates to address page when form is valid and co style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -1111,7 +1111,7 @@ exports[`BasicInfo Component navigates to address page when form is valid and co "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -1145,7 +1145,7 @@ exports[`BasicInfo Component navigates to address page when form is valid and co style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1293,7 +1293,7 @@ exports[`BasicInfo Component navigates to address page when form is valid and co style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1395,7 +1395,7 @@ exports[`BasicInfo Component navigates to address page when form is valid and co "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -1497,7 +1497,7 @@ exports[`BasicInfo Component navigates to address page when form is valid and co style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -1511,7 +1511,7 @@ exports[`BasicInfo Component navigates to address page when form is valid and co style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -1552,7 +1552,7 @@ exports[`BasicInfo Component navigates to address page when form is valid and co style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1812,7 +1812,7 @@ exports[`BasicInfo Component passes regions to DepositPhoneField component 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2280,7 +2280,7 @@ exports[`BasicInfo Component passes regions to DepositPhoneField component 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2296,7 +2296,7 @@ exports[`BasicInfo Component passes regions to DepositPhoneField component 1`] = style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2333,7 +2333,7 @@ exports[`BasicInfo Component passes regions to DepositPhoneField component 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2415,7 +2415,7 @@ exports[`BasicInfo Component passes regions to DepositPhoneField component 1`] = "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -2451,7 +2451,7 @@ exports[`BasicInfo Component passes regions to DepositPhoneField component 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2533,7 +2533,7 @@ exports[`BasicInfo Component passes regions to DepositPhoneField component 1`] = "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -2568,7 +2568,7 @@ exports[`BasicInfo Component passes regions to DepositPhoneField component 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2648,7 +2648,7 @@ exports[`BasicInfo Component passes regions to DepositPhoneField component 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2662,7 +2662,7 @@ exports[`BasicInfo Component passes regions to DepositPhoneField component 1`] = style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -2699,7 +2699,7 @@ exports[`BasicInfo Component passes regions to DepositPhoneField component 1`] = "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -2733,7 +2733,7 @@ exports[`BasicInfo Component passes regions to DepositPhoneField component 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2881,7 +2881,7 @@ exports[`BasicInfo Component passes regions to DepositPhoneField component 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2983,7 +2983,7 @@ exports[`BasicInfo Component passes regions to DepositPhoneField component 1`] = "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -3085,7 +3085,7 @@ exports[`BasicInfo Component passes regions to DepositPhoneField component 1`] = style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -3099,7 +3099,7 @@ exports[`BasicInfo Component passes regions to DepositPhoneField component 1`] = style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -3140,7 +3140,7 @@ exports[`BasicInfo Component passes regions to DepositPhoneField component 1`] = style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3400,7 +3400,7 @@ exports[`BasicInfo Component prefills form data when previousFormData is provide style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3868,7 +3868,7 @@ exports[`BasicInfo Component prefills form data when previousFormData is provide style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3884,7 +3884,7 @@ exports[`BasicInfo Component prefills form data when previousFormData is provide style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3921,7 +3921,7 @@ exports[`BasicInfo Component prefills form data when previousFormData is provide style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4003,7 +4003,7 @@ exports[`BasicInfo Component prefills form data when previousFormData is provide "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -4039,7 +4039,7 @@ exports[`BasicInfo Component prefills form data when previousFormData is provide style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4121,7 +4121,7 @@ exports[`BasicInfo Component prefills form data when previousFormData is provide "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -4156,7 +4156,7 @@ exports[`BasicInfo Component prefills form data when previousFormData is provide style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4236,7 +4236,7 @@ exports[`BasicInfo Component prefills form data when previousFormData is provide style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4250,7 +4250,7 @@ exports[`BasicInfo Component prefills form data when previousFormData is provide style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -4287,7 +4287,7 @@ exports[`BasicInfo Component prefills form data when previousFormData is provide "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -4321,7 +4321,7 @@ exports[`BasicInfo Component prefills form data when previousFormData is provide style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4469,7 +4469,7 @@ exports[`BasicInfo Component prefills form data when previousFormData is provide style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4571,7 +4571,7 @@ exports[`BasicInfo Component prefills form data when previousFormData is provide "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -4673,7 +4673,7 @@ exports[`BasicInfo Component prefills form data when previousFormData is provide style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -4687,7 +4687,7 @@ exports[`BasicInfo Component prefills form data when previousFormData is provide style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -4728,7 +4728,7 @@ exports[`BasicInfo Component prefills form data when previousFormData is provide style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4988,7 +4988,7 @@ exports[`BasicInfo Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5456,7 +5456,7 @@ exports[`BasicInfo Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -5472,7 +5472,7 @@ exports[`BasicInfo Component render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5509,7 +5509,7 @@ exports[`BasicInfo Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5591,7 +5591,7 @@ exports[`BasicInfo Component render matches snapshot 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -5627,7 +5627,7 @@ exports[`BasicInfo Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5709,7 +5709,7 @@ exports[`BasicInfo Component render matches snapshot 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -5744,7 +5744,7 @@ exports[`BasicInfo Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5824,7 +5824,7 @@ exports[`BasicInfo Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5838,7 +5838,7 @@ exports[`BasicInfo Component render matches snapshot 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -5875,7 +5875,7 @@ exports[`BasicInfo Component render matches snapshot 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -5909,7 +5909,7 @@ exports[`BasicInfo Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6057,7 +6057,7 @@ exports[`BasicInfo Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6159,7 +6159,7 @@ exports[`BasicInfo Component render matches snapshot 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -6261,7 +6261,7 @@ exports[`BasicInfo Component render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -6275,7 +6275,7 @@ exports[`BasicInfo Component render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -6316,7 +6316,7 @@ exports[`BasicInfo Component render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6576,7 +6576,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -7044,7 +7044,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -7060,7 +7060,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -7097,7 +7097,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -7179,7 +7179,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -7201,7 +7201,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 24, @@ -7230,7 +7230,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -7312,7 +7312,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -7334,7 +7334,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 24, @@ -7362,7 +7362,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -7442,7 +7442,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -7456,7 +7456,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -7493,7 +7493,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -7515,7 +7515,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 24, @@ -7542,7 +7542,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -7690,7 +7690,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -7792,7 +7792,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -7814,7 +7814,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 24, @@ -7909,7 +7909,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -7923,7 +7923,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -7964,7 +7964,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -8224,7 +8224,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -8692,7 +8692,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -8708,7 +8708,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -8745,7 +8745,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -8827,7 +8827,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -8849,7 +8849,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 24, @@ -8878,7 +8878,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -8960,7 +8960,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -8982,7 +8982,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 24, @@ -9010,7 +9010,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9090,7 +9090,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9104,7 +9104,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -9141,7 +9141,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -9175,7 +9175,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9323,7 +9323,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9425,7 +9425,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -9447,7 +9447,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 24, @@ -9542,7 +9542,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -9556,7 +9556,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -9597,7 +9597,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9857,7 +9857,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -10325,7 +10325,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -10341,7 +10341,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -10378,7 +10378,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -10460,7 +10460,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -10482,7 +10482,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 24, @@ -10511,7 +10511,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -10593,7 +10593,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -10615,7 +10615,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 24, @@ -10643,7 +10643,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -10723,7 +10723,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -10737,7 +10737,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -10774,7 +10774,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -10808,7 +10808,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -11008,7 +11008,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -11022,7 +11022,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -11063,7 +11063,7 @@ exports[`BasicInfo Component snapshot matches validation errors when continue is style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/Views/BuildQuote/BuildQuote.styles.ts b/app/components/UI/Ramp/Deposit/Views/BuildQuote/BuildQuote.styles.ts index f3a6ee5efdb8..4c9600946bef 100644 --- a/app/components/UI/Ramp/Deposit/Views/BuildQuote/BuildQuote.styles.ts +++ b/app/components/UI/Ramp/Deposit/Views/BuildQuote/BuildQuote.styles.ts @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../../styles/common'; import { Theme } from '../../../../../../util/theme/models'; const styleSheet = (params: { theme: Theme }) => { @@ -10,7 +11,6 @@ const styleSheet = (params: { theme: Theme }) => { }, selectionRow: { flexDirection: 'row', - fontWeight: 500, justifyContent: 'center', gap: 12, }, @@ -39,7 +39,7 @@ const styleSheet = (params: { theme: Theme }) => { textAlign: 'center', fontSize: 64, lineHeight: 64 + 8, - fontWeight: 400, + ...fontStyles.normal, }, convertedAmount: { textAlign: 'center', diff --git a/app/components/UI/Ramp/Deposit/Views/BuildQuote/__snapshots__/BuildQuote.test.tsx.snap b/app/components/UI/Ramp/Deposit/Views/BuildQuote/__snapshots__/BuildQuote.test.tsx.snap index 5f5a98b57b9c..bb9cefe55931 100644 --- a/app/components/UI/Ramp/Deposit/Views/BuildQuote/__snapshots__/BuildQuote.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/Views/BuildQuote/__snapshots__/BuildQuote.test.tsx.snap @@ -224,7 +224,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -571,7 +571,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "flexDirection": "row", - "fontWeight": 500, + "fontFamily": "Geist-Medium", "gap": 12, "justifyContent": "center", } @@ -600,7 +600,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -638,7 +638,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -652,7 +652,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -695,9 +695,8 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 64, - "fontWeight": 400, "letterSpacing": 0, "lineHeight": 72, "textAlign": "center", @@ -852,7 +851,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -941,7 +940,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -997,7 +996,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1011,7 +1010,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1070,7 +1069,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1850,7 +1849,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2100,7 +2099,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2447,7 +2446,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "flexDirection": "row", - "fontWeight": 500, + "fontFamily": "Geist-Medium", "gap": 12, "justifyContent": "center", } @@ -2476,7 +2475,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2514,7 +2513,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2528,7 +2527,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2571,9 +2570,8 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 64, - "fontWeight": 400, "letterSpacing": 0, "lineHeight": 72, "textAlign": "center", @@ -2728,7 +2726,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -2817,7 +2815,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2873,7 +2871,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2887,7 +2885,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2946,7 +2944,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3726,7 +3724,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3976,7 +3974,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4323,7 +4321,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "flexDirection": "row", - "fontWeight": 500, + "fontFamily": "Geist-Medium", "gap": 12, "justifyContent": "center", } @@ -4352,7 +4350,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4390,7 +4388,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4404,7 +4402,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4447,9 +4445,8 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 64, - "fontWeight": 400, "letterSpacing": 0, "lineHeight": 72, "textAlign": "center", @@ -4604,7 +4601,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -4693,7 +4690,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4749,7 +4746,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4763,7 +4760,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4822,7 +4819,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -5602,7 +5599,7 @@ exports[`BuildQuote Component Continue button functionality displays error when style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5852,7 +5849,7 @@ exports[`BuildQuote Component Keypad Functionality displays converted token amou style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6199,7 +6196,7 @@ exports[`BuildQuote Component Keypad Functionality displays converted token amou style={ { "flexDirection": "row", - "fontWeight": 500, + "fontFamily": "Geist-Medium", "gap": 12, "justifyContent": "center", } @@ -6228,7 +6225,7 @@ exports[`BuildQuote Component Keypad Functionality displays converted token amou style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6266,7 +6263,7 @@ exports[`BuildQuote Component Keypad Functionality displays converted token amou style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6280,7 +6277,7 @@ exports[`BuildQuote Component Keypad Functionality displays converted token amou style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6323,9 +6320,8 @@ exports[`BuildQuote Component Keypad Functionality displays converted token amou style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 64, - "fontWeight": 400, "letterSpacing": 0, "lineHeight": 72, "textAlign": "center", @@ -6339,7 +6335,7 @@ exports[`BuildQuote Component Keypad Functionality displays converted token amou style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6497,7 +6493,7 @@ exports[`BuildQuote Component Keypad Functionality displays converted token amou style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -6564,7 +6560,7 @@ exports[`BuildQuote Component Keypad Functionality displays converted token amou style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6578,7 +6574,7 @@ exports[`BuildQuote Component Keypad Functionality displays converted token amou style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -6637,7 +6633,7 @@ exports[`BuildQuote Component Keypad Functionality displays converted token amou style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -7417,7 +7413,7 @@ exports[`BuildQuote Component Keypad Functionality displays converted token amou style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -7667,7 +7663,7 @@ exports[`BuildQuote Component Keypad Functionality updates amount when keypad is style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -8014,7 +8010,7 @@ exports[`BuildQuote Component Keypad Functionality updates amount when keypad is style={ { "flexDirection": "row", - "fontWeight": 500, + "fontFamily": "Geist-Medium", "gap": 12, "justifyContent": "center", } @@ -8043,7 +8039,7 @@ exports[`BuildQuote Component Keypad Functionality updates amount when keypad is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -8081,7 +8077,7 @@ exports[`BuildQuote Component Keypad Functionality updates amount when keypad is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -8095,7 +8091,7 @@ exports[`BuildQuote Component Keypad Functionality updates amount when keypad is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -8138,9 +8134,8 @@ exports[`BuildQuote Component Keypad Functionality updates amount when keypad is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 64, - "fontWeight": 400, "letterSpacing": 0, "lineHeight": 72, "textAlign": "center", @@ -8154,7 +8149,7 @@ exports[`BuildQuote Component Keypad Functionality updates amount when keypad is style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -8312,7 +8307,7 @@ exports[`BuildQuote Component Keypad Functionality updates amount when keypad is style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -8379,7 +8374,7 @@ exports[`BuildQuote Component Keypad Functionality updates amount when keypad is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -8393,7 +8388,7 @@ exports[`BuildQuote Component Keypad Functionality updates amount when keypad is style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -8452,7 +8447,7 @@ exports[`BuildQuote Component Keypad Functionality updates amount when keypad is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9231,7 +9226,7 @@ exports[`BuildQuote Component Keypad Functionality updates amount when keypad is style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9481,7 +9476,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9828,7 +9823,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "flexDirection": "row", - "fontWeight": 500, + "fontFamily": "Geist-Medium", "gap": 12, "justifyContent": "center", } @@ -9857,7 +9852,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9895,7 +9890,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9909,7 +9904,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9952,9 +9947,8 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 64, - "fontWeight": 400, "letterSpacing": 0, "lineHeight": 72, "textAlign": "center", @@ -9968,7 +9962,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -10126,7 +10120,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -10193,7 +10187,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -10207,7 +10201,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -10266,7 +10260,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -11046,7 +11040,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -11296,7 +11290,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -11643,7 +11637,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "flexDirection": "row", - "fontWeight": 500, + "fontFamily": "Geist-Medium", "gap": 12, "justifyContent": "center", } @@ -11672,7 +11666,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -11710,7 +11704,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -11724,7 +11718,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -11767,9 +11761,8 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 64, - "fontWeight": 400, "letterSpacing": 0, "lineHeight": 72, "textAlign": "center", @@ -11783,7 +11776,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -11941,7 +11934,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -12012,7 +12005,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -12033,7 +12026,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met { "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -12046,7 +12039,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -12101,7 +12094,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -12115,7 +12108,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -12174,7 +12167,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -12954,7 +12947,7 @@ exports[`BuildQuote Component Payment Method Selection does not open payment met style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -13204,7 +13197,7 @@ exports[`BuildQuote Component Payment Method Selection does not show the duratio style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -13551,7 +13544,7 @@ exports[`BuildQuote Component Payment Method Selection does not show the duratio style={ { "flexDirection": "row", - "fontWeight": 500, + "fontFamily": "Geist-Medium", "gap": 12, "justifyContent": "center", } @@ -13580,7 +13573,7 @@ exports[`BuildQuote Component Payment Method Selection does not show the duratio style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -13618,7 +13611,7 @@ exports[`BuildQuote Component Payment Method Selection does not show the duratio style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -13632,7 +13625,7 @@ exports[`BuildQuote Component Payment Method Selection does not show the duratio style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -13675,9 +13668,8 @@ exports[`BuildQuote Component Payment Method Selection does not show the duratio style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 64, - "fontWeight": 400, "letterSpacing": 0, "lineHeight": 72, "textAlign": "center", @@ -13691,7 +13683,7 @@ exports[`BuildQuote Component Payment Method Selection does not show the duratio style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -13849,7 +13841,7 @@ exports[`BuildQuote Component Payment Method Selection does not show the duratio style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -13916,7 +13908,7 @@ exports[`BuildQuote Component Payment Method Selection does not show the duratio style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -13930,7 +13922,7 @@ exports[`BuildQuote Component Payment Method Selection does not show the duratio style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -14724,7 +14716,7 @@ exports[`BuildQuote Component Payment Method Selection does not show the duratio style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -14974,7 +14966,7 @@ exports[`BuildQuote Component Payment Method Selection shows the right duration style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -15321,7 +15313,7 @@ exports[`BuildQuote Component Payment Method Selection shows the right duration style={ { "flexDirection": "row", - "fontWeight": 500, + "fontFamily": "Geist-Medium", "gap": 12, "justifyContent": "center", } @@ -15350,7 +15342,7 @@ exports[`BuildQuote Component Payment Method Selection shows the right duration style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -15388,7 +15380,7 @@ exports[`BuildQuote Component Payment Method Selection shows the right duration style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -15402,7 +15394,7 @@ exports[`BuildQuote Component Payment Method Selection shows the right duration style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -15445,9 +15437,8 @@ exports[`BuildQuote Component Payment Method Selection shows the right duration style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 64, - "fontWeight": 400, "letterSpacing": 0, "lineHeight": 72, "textAlign": "center", @@ -15461,7 +15452,7 @@ exports[`BuildQuote Component Payment Method Selection shows the right duration style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -15619,7 +15610,7 @@ exports[`BuildQuote Component Payment Method Selection shows the right duration style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -15686,7 +15677,7 @@ exports[`BuildQuote Component Payment Method Selection shows the right duration style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -15700,7 +15691,7 @@ exports[`BuildQuote Component Payment Method Selection shows the right duration style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -15759,7 +15750,7 @@ exports[`BuildQuote Component Payment Method Selection shows the right duration style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -16539,7 +16530,7 @@ exports[`BuildQuote Component Payment Method Selection shows the right duration style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -16789,7 +16780,7 @@ exports[`BuildQuote Component Region Selection displays EUR currency when select style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -17136,7 +17127,7 @@ exports[`BuildQuote Component Region Selection displays EUR currency when select style={ { "flexDirection": "row", - "fontWeight": 500, + "fontFamily": "Geist-Medium", "gap": 12, "justifyContent": "center", } @@ -17165,7 +17156,7 @@ exports[`BuildQuote Component Region Selection displays EUR currency when select style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -17203,7 +17194,7 @@ exports[`BuildQuote Component Region Selection displays EUR currency when select style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -17217,7 +17208,7 @@ exports[`BuildQuote Component Region Selection displays EUR currency when select style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -17260,9 +17251,8 @@ exports[`BuildQuote Component Region Selection displays EUR currency when select style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 64, - "fontWeight": 400, "letterSpacing": 0, "lineHeight": 72, "textAlign": "center", @@ -17276,7 +17266,7 @@ exports[`BuildQuote Component Region Selection displays EUR currency when select style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -17434,7 +17424,7 @@ exports[`BuildQuote Component Region Selection displays EUR currency when select style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -17501,7 +17491,7 @@ exports[`BuildQuote Component Region Selection displays EUR currency when select style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -17515,7 +17505,7 @@ exports[`BuildQuote Component Region Selection displays EUR currency when select style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -17574,7 +17564,7 @@ exports[`BuildQuote Component Region Selection displays EUR currency when select style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -18354,7 +18344,7 @@ exports[`BuildQuote Component Region Selection displays EUR currency when select style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -18604,7 +18594,7 @@ exports[`BuildQuote Component Region Selection displays default US region on ini style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -18951,7 +18941,7 @@ exports[`BuildQuote Component Region Selection displays default US region on ini style={ { "flexDirection": "row", - "fontWeight": 500, + "fontFamily": "Geist-Medium", "gap": 12, "justifyContent": "center", } @@ -18980,7 +18970,7 @@ exports[`BuildQuote Component Region Selection displays default US region on ini style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -19018,7 +19008,7 @@ exports[`BuildQuote Component Region Selection displays default US region on ini style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -19032,7 +19022,7 @@ exports[`BuildQuote Component Region Selection displays default US region on ini style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -19075,9 +19065,8 @@ exports[`BuildQuote Component Region Selection displays default US region on ini style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 64, - "fontWeight": 400, "letterSpacing": 0, "lineHeight": 72, "textAlign": "center", @@ -19091,7 +19080,7 @@ exports[`BuildQuote Component Region Selection displays default US region on ini style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -19249,7 +19238,7 @@ exports[`BuildQuote Component Region Selection displays default US region on ini style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -19316,7 +19305,7 @@ exports[`BuildQuote Component Region Selection displays default US region on ini style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -19330,7 +19319,7 @@ exports[`BuildQuote Component Region Selection displays default US region on ini style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -19389,7 +19378,7 @@ exports[`BuildQuote Component Region Selection displays default US region on ini style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -20169,7 +20158,7 @@ exports[`BuildQuote Component Region Selection displays default US region on ini style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -20419,7 +20408,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -20766,7 +20755,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "flexDirection": "row", - "fontWeight": 500, + "fontFamily": "Geist-Medium", "gap": 12, "justifyContent": "center", } @@ -20795,7 +20784,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -20833,7 +20822,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -20847,7 +20836,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -20890,9 +20879,8 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 64, - "fontWeight": 400, "letterSpacing": 0, "lineHeight": 72, "textAlign": "center", @@ -20906,7 +20894,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -21064,7 +21052,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -21131,7 +21119,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -21145,7 +21133,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -21204,7 +21192,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -21984,7 +21972,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -22234,7 +22222,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -22581,7 +22569,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "flexDirection": "row", - "fontWeight": 500, + "fontFamily": "Geist-Medium", "gap": 12, "justifyContent": "center", } @@ -22610,7 +22598,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -22648,7 +22636,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -22662,7 +22650,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -22705,9 +22693,8 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 64, - "fontWeight": 400, "letterSpacing": 0, "lineHeight": 72, "textAlign": "center", @@ -22721,7 +22708,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -22879,7 +22866,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -22950,7 +22937,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -22971,7 +22958,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r { "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -22984,7 +22971,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -23039,7 +23026,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -23053,7 +23040,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -23112,7 +23099,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -23892,7 +23879,7 @@ exports[`BuildQuote Component Region Selection does not open region modal when r style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -24142,7 +24129,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -24489,7 +24476,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "flexDirection": "row", - "fontWeight": 500, + "fontFamily": "Geist-Medium", "gap": 12, "justifyContent": "center", } @@ -24518,7 +24505,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -24556,7 +24543,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -24570,7 +24557,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -24613,9 +24600,8 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 64, - "fontWeight": 400, "letterSpacing": 0, "lineHeight": 72, "textAlign": "center", @@ -24629,7 +24615,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -24785,7 +24771,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -24852,7 +24838,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -24866,7 +24852,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -24925,7 +24911,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -25705,7 +25691,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -25955,7 +25941,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -26302,7 +26288,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "flexDirection": "row", - "fontWeight": 500, + "fontFamily": "Geist-Medium", "gap": 12, "justifyContent": "center", } @@ -26331,7 +26317,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -26369,7 +26355,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -26383,7 +26369,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -26426,9 +26412,8 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 64, - "fontWeight": 400, "letterSpacing": 0, "lineHeight": 72, "textAlign": "center", @@ -26442,7 +26427,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -26598,7 +26583,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -26669,7 +26654,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -26690,7 +26675,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry { "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -26703,7 +26688,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -26758,7 +26743,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -26772,7 +26757,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -26831,7 +26816,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -27611,7 +27596,7 @@ exports[`BuildQuote Component Token Selection does not open token modal when cry style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -27861,7 +27846,7 @@ exports[`BuildQuote Component User Details Error displays user details error ale style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -28208,7 +28193,7 @@ exports[`BuildQuote Component User Details Error displays user details error ale style={ { "flexDirection": "row", - "fontWeight": 500, + "fontFamily": "Geist-Medium", "gap": 12, "justifyContent": "center", } @@ -28237,7 +28222,7 @@ exports[`BuildQuote Component User Details Error displays user details error ale style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -28275,7 +28260,7 @@ exports[`BuildQuote Component User Details Error displays user details error ale style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -28289,7 +28274,7 @@ exports[`BuildQuote Component User Details Error displays user details error ale style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -28332,9 +28317,8 @@ exports[`BuildQuote Component User Details Error displays user details error ale style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 64, - "fontWeight": 400, "letterSpacing": 0, "lineHeight": 72, "textAlign": "center", @@ -28348,7 +28332,7 @@ exports[`BuildQuote Component User Details Error displays user details error ale style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -28506,7 +28490,7 @@ exports[`BuildQuote Component User Details Error displays user details error ale style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -28577,7 +28561,7 @@ exports[`BuildQuote Component User Details Error displays user details error ale style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -28598,7 +28582,7 @@ exports[`BuildQuote Component User Details Error displays user details error ale { "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -28611,7 +28595,7 @@ exports[`BuildQuote Component User Details Error displays user details error ale style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -28666,7 +28650,7 @@ exports[`BuildQuote Component User Details Error displays user details error ale style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -28680,7 +28664,7 @@ exports[`BuildQuote Component User Details Error displays user details error ale style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -28739,7 +28723,7 @@ exports[`BuildQuote Component User Details Error displays user details error ale style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -29519,7 +29503,7 @@ exports[`BuildQuote Component User Details Error displays user details error ale style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -29769,7 +29753,7 @@ exports[`BuildQuote Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -30116,7 +30100,7 @@ exports[`BuildQuote Component render matches snapshot 1`] = ` style={ { "flexDirection": "row", - "fontWeight": 500, + "fontFamily": "Geist-Medium", "gap": 12, "justifyContent": "center", } @@ -30145,7 +30129,7 @@ exports[`BuildQuote Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -30183,7 +30167,7 @@ exports[`BuildQuote Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -30197,7 +30181,7 @@ exports[`BuildQuote Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -30240,9 +30224,8 @@ exports[`BuildQuote Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 64, - "fontWeight": 400, "letterSpacing": 0, "lineHeight": 72, "textAlign": "center", @@ -30256,7 +30239,7 @@ exports[`BuildQuote Component render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -30414,7 +30397,7 @@ exports[`BuildQuote Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -30481,7 +30464,7 @@ exports[`BuildQuote Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -30495,7 +30478,7 @@ exports[`BuildQuote Component render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -30554,7 +30537,7 @@ exports[`BuildQuote Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -31334,7 +31317,7 @@ exports[`BuildQuote Component render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/Views/DepositOrderDetails/__snapshots__/DepositOrderDetails.test.tsx.snap b/app/components/UI/Ramp/Deposit/Views/DepositOrderDetails/__snapshots__/DepositOrderDetails.test.tsx.snap index 26110bd37290..b1f5f1bef334 100644 --- a/app/components/UI/Ramp/Deposit/Views/DepositOrderDetails/__snapshots__/DepositOrderDetails.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/Views/DepositOrderDetails/__snapshots__/DepositOrderDetails.test.tsx.snap @@ -111,7 +111,7 @@ exports[`DepositOrderDetails Component renders an error screen if a CREATED orde style={ { "color": "#ca3542", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -126,7 +126,7 @@ exports[`DepositOrderDetails Component renders an error screen if a CREATED orde style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -162,7 +162,7 @@ exports[`DepositOrderDetails Component renders an error screen if a CREATED orde style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -421,7 +421,7 @@ exports[`DepositOrderDetails Component renders error state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 40, "letterSpacing": 0, "lineHeight": 40, @@ -463,7 +463,7 @@ exports[`DepositOrderDetails Component renders error state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -490,7 +490,7 @@ exports[`DepositOrderDetails Component renders error state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -514,7 +514,7 @@ exports[`DepositOrderDetails Component renders error state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -549,7 +549,7 @@ exports[`DepositOrderDetails Component renders error state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -575,7 +575,7 @@ exports[`DepositOrderDetails Component renders error state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -599,7 +599,7 @@ exports[`DepositOrderDetails Component renders error state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -649,7 +649,7 @@ exports[`DepositOrderDetails Component renders error state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -663,7 +663,7 @@ exports[`DepositOrderDetails Component renders error state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -688,7 +688,7 @@ exports[`DepositOrderDetails Component renders error state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -702,7 +702,7 @@ exports[`DepositOrderDetails Component renders error state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1052,7 +1052,7 @@ exports[`DepositOrderDetails Component renders processing state correctly 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 40, "letterSpacing": 0, "lineHeight": 40, @@ -1094,7 +1094,7 @@ exports[`DepositOrderDetails Component renders processing state correctly 1`] = style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1121,7 +1121,7 @@ exports[`DepositOrderDetails Component renders processing state correctly 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1145,7 +1145,7 @@ exports[`DepositOrderDetails Component renders processing state correctly 1`] = style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1180,7 +1180,7 @@ exports[`DepositOrderDetails Component renders processing state correctly 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1206,7 +1206,7 @@ exports[`DepositOrderDetails Component renders processing state correctly 1`] = style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1230,7 +1230,7 @@ exports[`DepositOrderDetails Component renders processing state correctly 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1280,7 +1280,7 @@ exports[`DepositOrderDetails Component renders processing state correctly 1`] = style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1294,7 +1294,7 @@ exports[`DepositOrderDetails Component renders processing state correctly 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1319,7 +1319,7 @@ exports[`DepositOrderDetails Component renders processing state correctly 1`] = style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1333,7 +1333,7 @@ exports[`DepositOrderDetails Component renders processing state correctly 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1593,7 +1593,7 @@ exports[`DepositOrderDetails Component renders success state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 40, "letterSpacing": 0, "lineHeight": 40, @@ -1635,7 +1635,7 @@ exports[`DepositOrderDetails Component renders success state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1662,7 +1662,7 @@ exports[`DepositOrderDetails Component renders success state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1686,7 +1686,7 @@ exports[`DepositOrderDetails Component renders success state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1721,7 +1721,7 @@ exports[`DepositOrderDetails Component renders success state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1747,7 +1747,7 @@ exports[`DepositOrderDetails Component renders success state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1771,7 +1771,7 @@ exports[`DepositOrderDetails Component renders success state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1821,7 +1821,7 @@ exports[`DepositOrderDetails Component renders success state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1835,7 +1835,7 @@ exports[`DepositOrderDetails Component renders success state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1860,7 +1860,7 @@ exports[`DepositOrderDetails Component renders success state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1874,7 +1874,7 @@ exports[`DepositOrderDetails Component renders success state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/Views/EnterAddress/EnterAddress.styles.ts b/app/components/UI/Ramp/Deposit/Views/EnterAddress/EnterAddress.styles.ts index 87f52fc9fcf4..5fcd4a2cad8f 100644 --- a/app/components/UI/Ramp/Deposit/Views/EnterAddress/EnterAddress.styles.ts +++ b/app/components/UI/Ramp/Deposit/Views/EnterAddress/EnterAddress.styles.ts @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../../styles/common'; import { Theme } from '../../../../../../util/theme/models'; const styleSheet = (params: { theme: Theme }) => { @@ -44,7 +45,7 @@ const styleSheet = (params: { theme: Theme }) => { }, label: { fontSize: 14, - fontWeight: '600', + ...fontStyles.medium, color: theme.colors.text.default, marginBottom: 6, }, diff --git a/app/components/UI/Ramp/Deposit/Views/EnterAddress/__snapshots__/EnterAddress.test.tsx.snap b/app/components/UI/Ramp/Deposit/Views/EnterAddress/__snapshots__/EnterAddress.test.tsx.snap index 10553582273f..92eef4478bc2 100644 --- a/app/components/UI/Ramp/Deposit/Views/EnterAddress/__snapshots__/EnterAddress.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/Views/EnterAddress/__snapshots__/EnterAddress.test.tsx.snap @@ -224,7 +224,7 @@ exports[`EnterAddress Component displays form validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -703,7 +703,7 @@ exports[`EnterAddress Component displays form validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -717,7 +717,7 @@ exports[`EnterAddress Component displays form validation errors when continue is style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -743,7 +743,7 @@ exports[`EnterAddress Component displays form validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -825,7 +825,7 @@ exports[`EnterAddress Component displays form validation errors when continue is "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -847,7 +847,7 @@ exports[`EnterAddress Component displays form validation errors when continue is style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 24, @@ -874,7 +874,7 @@ exports[`EnterAddress Component displays form validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -956,7 +956,7 @@ exports[`EnterAddress Component displays form validation errors when continue is "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -1001,7 +1001,7 @@ exports[`EnterAddress Component displays form validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1082,7 +1082,7 @@ exports[`EnterAddress Component displays form validation errors when continue is "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -1104,7 +1104,7 @@ exports[`EnterAddress Component displays form validation errors when continue is style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 24, @@ -1133,7 +1133,7 @@ exports[`EnterAddress Component displays form validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1185,7 +1185,7 @@ exports[`EnterAddress Component displays form validation errors when continue is "fontSize": 16, }, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1215,7 +1215,7 @@ exports[`EnterAddress Component displays form validation errors when continue is style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 24, @@ -1254,7 +1254,7 @@ exports[`EnterAddress Component displays form validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1336,7 +1336,7 @@ exports[`EnterAddress Component displays form validation errors when continue is "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -1358,7 +1358,7 @@ exports[`EnterAddress Component displays form validation errors when continue is style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 24, @@ -1387,7 +1387,7 @@ exports[`EnterAddress Component displays form validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1456,7 +1456,7 @@ exports[`EnterAddress Component displays form validation errors when continue is style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1488,7 +1488,7 @@ exports[`EnterAddress Component displays form validation errors when continue is "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -1589,7 +1589,7 @@ exports[`EnterAddress Component displays form validation errors when continue is style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -1603,7 +1603,7 @@ exports[`EnterAddress Component displays form validation errors when continue is style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -1644,7 +1644,7 @@ exports[`EnterAddress Component displays form validation errors when continue is style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1905,7 +1905,7 @@ exports[`EnterAddress Component prefills form data when previousFormData is prov style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2384,7 +2384,7 @@ exports[`EnterAddress Component prefills form data when previousFormData is prov style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -2398,7 +2398,7 @@ exports[`EnterAddress Component prefills form data when previousFormData is prov style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2424,7 +2424,7 @@ exports[`EnterAddress Component prefills form data when previousFormData is prov style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2506,7 +2506,7 @@ exports[`EnterAddress Component prefills form data when previousFormData is prov "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -2540,7 +2540,7 @@ exports[`EnterAddress Component prefills form data when previousFormData is prov style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2622,7 +2622,7 @@ exports[`EnterAddress Component prefills form data when previousFormData is prov "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -2667,7 +2667,7 @@ exports[`EnterAddress Component prefills form data when previousFormData is prov style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2748,7 +2748,7 @@ exports[`EnterAddress Component prefills form data when previousFormData is prov "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -2784,7 +2784,7 @@ exports[`EnterAddress Component prefills form data when previousFormData is prov style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2828,7 +2828,7 @@ exports[`EnterAddress Component prefills form data when previousFormData is prov { "color": "#121314", "flex": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2882,7 +2882,7 @@ exports[`EnterAddress Component prefills form data when previousFormData is prov style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2964,7 +2964,7 @@ exports[`EnterAddress Component prefills form data when previousFormData is prov "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -3000,7 +3000,7 @@ exports[`EnterAddress Component prefills form data when previousFormData is prov style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3069,7 +3069,7 @@ exports[`EnterAddress Component prefills form data when previousFormData is prov style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3101,7 +3101,7 @@ exports[`EnterAddress Component prefills form data when previousFormData is prov "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -3202,7 +3202,7 @@ exports[`EnterAddress Component prefills form data when previousFormData is prov style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -3216,7 +3216,7 @@ exports[`EnterAddress Component prefills form data when previousFormData is prov style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -3257,7 +3257,7 @@ exports[`EnterAddress Component prefills form data when previousFormData is prov style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3518,7 +3518,7 @@ exports[`EnterAddress Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3997,7 +3997,7 @@ exports[`EnterAddress Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -4011,7 +4011,7 @@ exports[`EnterAddress Component render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4037,7 +4037,7 @@ exports[`EnterAddress Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4119,7 +4119,7 @@ exports[`EnterAddress Component render matches snapshot 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -4153,7 +4153,7 @@ exports[`EnterAddress Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4235,7 +4235,7 @@ exports[`EnterAddress Component render matches snapshot 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -4280,7 +4280,7 @@ exports[`EnterAddress Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4361,7 +4361,7 @@ exports[`EnterAddress Component render matches snapshot 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -4397,7 +4397,7 @@ exports[`EnterAddress Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4449,7 +4449,7 @@ exports[`EnterAddress Component render matches snapshot 1`] = ` "fontSize": 16, }, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4503,7 +4503,7 @@ exports[`EnterAddress Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4585,7 +4585,7 @@ exports[`EnterAddress Component render matches snapshot 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -4621,7 +4621,7 @@ exports[`EnterAddress Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4690,7 +4690,7 @@ exports[`EnterAddress Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4722,7 +4722,7 @@ exports[`EnterAddress Component render matches snapshot 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -4823,7 +4823,7 @@ exports[`EnterAddress Component render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -4837,7 +4837,7 @@ exports[`EnterAddress Component render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -4878,7 +4878,7 @@ exports[`EnterAddress Component render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5139,7 +5139,7 @@ exports[`EnterAddress Component shows text input for state when region is not US style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5618,7 +5618,7 @@ exports[`EnterAddress Component shows text input for state when region is not US style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -5632,7 +5632,7 @@ exports[`EnterAddress Component shows text input for state when region is not US style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5658,7 +5658,7 @@ exports[`EnterAddress Component shows text input for state when region is not US style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5740,7 +5740,7 @@ exports[`EnterAddress Component shows text input for state when region is not US "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -5774,7 +5774,7 @@ exports[`EnterAddress Component shows text input for state when region is not US style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5856,7 +5856,7 @@ exports[`EnterAddress Component shows text input for state when region is not US "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -5901,7 +5901,7 @@ exports[`EnterAddress Component shows text input for state when region is not US style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5982,7 +5982,7 @@ exports[`EnterAddress Component shows text input for state when region is not US "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -6018,7 +6018,7 @@ exports[`EnterAddress Component shows text input for state when region is not US style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6099,7 +6099,7 @@ exports[`EnterAddress Component shows text input for state when region is not US "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -6145,7 +6145,7 @@ exports[`EnterAddress Component shows text input for state when region is not US style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6227,7 +6227,7 @@ exports[`EnterAddress Component shows text input for state when region is not US "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -6263,7 +6263,7 @@ exports[`EnterAddress Component shows text input for state when region is not US style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6332,7 +6332,7 @@ exports[`EnterAddress Component shows text input for state when region is not US style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6364,7 +6364,7 @@ exports[`EnterAddress Component shows text input for state when region is not US "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -6465,7 +6465,7 @@ exports[`EnterAddress Component shows text input for state when region is not US style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -6479,7 +6479,7 @@ exports[`EnterAddress Component shows text input for state when region is not US style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -6520,7 +6520,7 @@ exports[`EnterAddress Component shows text input for state when region is not US style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/Views/EnterEmail/EnterEmail.styles.ts b/app/components/UI/Ramp/Deposit/Views/EnterEmail/EnterEmail.styles.ts index 6f4c3fbc7116..221c1dcaf9df 100644 --- a/app/components/UI/Ramp/Deposit/Views/EnterEmail/EnterEmail.styles.ts +++ b/app/components/UI/Ramp/Deposit/Views/EnterEmail/EnterEmail.styles.ts @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../../styles/common'; import { Theme } from '../../../../../../util/theme/models'; const styleSheet = (params: { theme: Theme }) => { @@ -10,7 +11,7 @@ const styleSheet = (params: { theme: Theme }) => { gap: 16, }, title: { - fontWeight: 'bold', + ...fontStyles.bold, }, description: { color: theme.colors.text.alternative, diff --git a/app/components/UI/Ramp/Deposit/Views/EnterEmail/__snapshots__/EnterEmail.test.tsx.snap b/app/components/UI/Ramp/Deposit/Views/EnterEmail/__snapshots__/EnterEmail.test.tsx.snap index a3d14868660c..6288ba035022 100644 --- a/app/components/UI/Ramp/Deposit/Views/EnterEmail/__snapshots__/EnterEmail.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/Views/EnterEmail/__snapshots__/EnterEmail.test.tsx.snap @@ -224,7 +224,7 @@ exports[`EnterEmail Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -671,9 +671,8 @@ exports[`EnterEmail Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 32, } @@ -686,7 +685,7 @@ exports[`EnterEmail Component render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -767,7 +766,7 @@ exports[`EnterEmail Component render matches snapshot 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -828,7 +827,7 @@ exports[`EnterEmail Component render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1088,7 +1087,7 @@ exports[`EnterEmail Component renders error message snapshot when API call fails style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1535,9 +1534,8 @@ exports[`EnterEmail Component renders error message snapshot when API call fails style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 32, } @@ -1550,7 +1548,7 @@ exports[`EnterEmail Component renders error message snapshot when API call fails style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1631,7 +1629,7 @@ exports[`EnterEmail Component renders error message snapshot when API call fails "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -1651,7 +1649,7 @@ exports[`EnterEmail Component renders error message snapshot when API call fails style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1706,7 +1704,7 @@ exports[`EnterEmail Component renders error message snapshot when API call fails style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1966,7 +1964,7 @@ exports[`EnterEmail Component renders loading state snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2413,9 +2411,8 @@ exports[`EnterEmail Component renders loading state snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 32, } @@ -2428,7 +2425,7 @@ exports[`EnterEmail Component renders loading state snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2509,7 +2506,7 @@ exports[`EnterEmail Component renders loading state snapshot 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -2570,7 +2567,7 @@ exports[`EnterEmail Component renders loading state snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2830,7 +2827,7 @@ exports[`EnterEmail Component renders validation error snapshot invalid email 1` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3277,9 +3274,8 @@ exports[`EnterEmail Component renders validation error snapshot invalid email 1` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 32, } @@ -3292,7 +3288,7 @@ exports[`EnterEmail Component renders validation error snapshot invalid email 1` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3373,7 +3369,7 @@ exports[`EnterEmail Component renders validation error snapshot invalid email 1` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -3393,7 +3389,7 @@ exports[`EnterEmail Component renders validation error snapshot invalid email 1` style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3448,7 +3444,7 @@ exports[`EnterEmail Component renders validation error snapshot invalid email 1` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/Views/KycProcessing/KycProcessing.styles.ts b/app/components/UI/Ramp/Deposit/Views/KycProcessing/KycProcessing.styles.ts index ce1f4f3d647a..9b28f4a77224 100644 --- a/app/components/UI/Ramp/Deposit/Views/KycProcessing/KycProcessing.styles.ts +++ b/app/components/UI/Ramp/Deposit/Views/KycProcessing/KycProcessing.styles.ts @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../../styles/common'; import { Theme } from '../../../../../../util/theme/models'; const styleSheet = (params: { theme: Theme }) => { @@ -15,7 +16,7 @@ const styleSheet = (params: { theme: Theme }) => { textAlign: 'center', marginTop: 12, marginBottom: 16, - fontWeight: 'bold', + ...fontStyles.bold, }, description: { textAlign: 'center', diff --git a/app/components/UI/Ramp/Deposit/Views/KycProcessing/__snapshots__/KycProcessing.test.tsx.snap b/app/components/UI/Ramp/Deposit/Views/KycProcessing/__snapshots__/KycProcessing.test.tsx.snap index fd94bce51433..f31312ae9f74 100644 --- a/app/components/UI/Ramp/Deposit/Views/KycProcessing/__snapshots__/KycProcessing.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/Views/KycProcessing/__snapshots__/KycProcessing.test.tsx.snap @@ -224,7 +224,7 @@ exports[`KycProcessing Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -678,9 +678,8 @@ exports[`KycProcessing Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 24, "marginBottom": 16, @@ -696,7 +695,7 @@ exports[`KycProcessing Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -974,7 +973,7 @@ exports[`KycProcessing Component renders approved state snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1450,9 +1449,8 @@ exports[`KycProcessing Component renders approved state snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 24, "marginBottom": 16, @@ -1468,7 +1466,7 @@ exports[`KycProcessing Component renders approved state snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1522,7 +1520,7 @@ exports[`KycProcessing Component renders approved state snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1782,7 +1780,7 @@ exports[`KycProcessing Component renders error state snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2244,9 +2242,8 @@ exports[`KycProcessing Component renders error state snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 24, "marginBottom": 16, @@ -2262,7 +2259,7 @@ exports[`KycProcessing Component renders error state snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2316,7 +2313,7 @@ exports[`KycProcessing Component renders error state snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2576,7 +2573,7 @@ exports[`KycProcessing Component renders loading state snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3030,9 +3027,8 @@ exports[`KycProcessing Component renders loading state snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 24, "marginBottom": 16, @@ -3048,7 +3044,7 @@ exports[`KycProcessing Component renders loading state snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3326,7 +3322,7 @@ exports[`KycProcessing Component renders pending forms state snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3788,9 +3784,8 @@ exports[`KycProcessing Component renders pending forms state snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 24, "marginBottom": 16, @@ -3806,7 +3801,7 @@ exports[`KycProcessing Component renders pending forms state snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3860,7 +3855,7 @@ exports[`KycProcessing Component renders pending forms state snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4120,7 +4115,7 @@ exports[`KycProcessing Component renders rejected state snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4582,9 +4577,8 @@ exports[`KycProcessing Component renders rejected state snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 24, "marginBottom": 16, @@ -4600,7 +4594,7 @@ exports[`KycProcessing Component renders rejected state snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4654,7 +4648,7 @@ exports[`KycProcessing Component renders rejected state snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/Views/Modals/ConfigurationModal/__snapshots__/ConfigurationModal.test.tsx.snap b/app/components/UI/Ramp/Deposit/Views/Modals/ConfigurationModal/__snapshots__/ConfigurationModal.test.tsx.snap index 6c35990355a0..60a82eba713d 100644 --- a/app/components/UI/Ramp/Deposit/Views/Modals/ConfigurationModal/__snapshots__/ConfigurationModal.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/Views/Modals/ConfigurationModal/__snapshots__/ConfigurationModal.test.tsx.snap @@ -466,7 +466,7 @@ exports[`ConfigurationModal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -597,7 +597,7 @@ exports[`ConfigurationModal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -684,7 +684,7 @@ exports[`ConfigurationModal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -771,7 +771,7 @@ exports[`ConfigurationModal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -785,7 +785,7 @@ exports[`ConfigurationModal render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/UI/Ramp/Deposit/Views/Modals/ErrorDetailsModal/__snapshots__/ErrorDetailsModal.test.tsx.snap b/app/components/UI/Ramp/Deposit/Views/Modals/ErrorDetailsModal/__snapshots__/ErrorDetailsModal.test.tsx.snap index a0b13bdfc625..5eb5a0cfbd78 100644 --- a/app/components/UI/Ramp/Deposit/Views/Modals/ErrorDetailsModal/__snapshots__/ErrorDetailsModal.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/Views/Modals/ErrorDetailsModal/__snapshots__/ErrorDetailsModal.test.tsx.snap @@ -488,7 +488,7 @@ exports[`ErrorDetailsModal renders correctly and matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -565,7 +565,7 @@ exports[`ErrorDetailsModal renders correctly and matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/Views/Modals/IncompatibleAccountTokenModal/__snapshots__/IncompatibleAccountTokenModal.test.tsx.snap b/app/components/UI/Ramp/Deposit/Views/Modals/IncompatibleAccountTokenModal/__snapshots__/IncompatibleAccountTokenModal.test.tsx.snap index 210f0923a608..e6dd2b3818e8 100644 --- a/app/components/UI/Ramp/Deposit/Views/Modals/IncompatibleAccountTokenModal/__snapshots__/IncompatibleAccountTokenModal.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/Views/Modals/IncompatibleAccountTokenModal/__snapshots__/IncompatibleAccountTokenModal.test.tsx.snap @@ -466,7 +466,7 @@ exports[`IncompatibleAccountTokenModal renders the modal with the correct title style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -535,7 +535,7 @@ exports[`IncompatibleAccountTokenModal renders the modal with the correct title style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -570,7 +570,7 @@ exports[`IncompatibleAccountTokenModal renders the modal with the correct title style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/Views/Modals/PaymentMethodSelectorModal/__snapshots__/PaymentMethodSelectorModal.test.tsx.snap b/app/components/UI/Ramp/Deposit/Views/Modals/PaymentMethodSelectorModal/__snapshots__/PaymentMethodSelectorModal.test.tsx.snap index 932b653a6dbb..950465380589 100644 --- a/app/components/UI/Ramp/Deposit/Views/Modals/PaymentMethodSelectorModal/__snapshots__/PaymentMethodSelectorModal.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/Views/Modals/PaymentMethodSelectorModal/__snapshots__/PaymentMethodSelectorModal.test.tsx.snap @@ -466,7 +466,7 @@ exports[`PaymentMethodSelectorModal Component renders correctly and matches snap style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -668,7 +668,7 @@ exports[`PaymentMethodSelectorModal Component renders correctly and matches snap style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -700,7 +700,7 @@ exports[`PaymentMethodSelectorModal Component renders correctly and matches snap style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -834,7 +834,7 @@ exports[`PaymentMethodSelectorModal Component renders correctly and matches snap style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -866,7 +866,7 @@ exports[`PaymentMethodSelectorModal Component renders correctly and matches snap style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/Views/Modals/RegionSelectorModal/__snapshots__/RegionSelectorModal.test.tsx.snap b/app/components/UI/Ramp/Deposit/Views/Modals/RegionSelectorModal/__snapshots__/RegionSelectorModal.test.tsx.snap index 033aba3a5462..fb71100d8bf2 100644 --- a/app/components/UI/Ramp/Deposit/Views/Modals/RegionSelectorModal/__snapshots__/RegionSelectorModal.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/Views/Modals/RegionSelectorModal/__snapshots__/RegionSelectorModal.test.tsx.snap @@ -466,7 +466,7 @@ exports[`RegionSelectorModal Component handles empty regions array from navigati style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -618,7 +618,7 @@ exports[`RegionSelectorModal Component handles empty regions array from navigati "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -682,7 +682,7 @@ exports[`RegionSelectorModal Component handles empty regions array from navigati style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1175,7 +1175,7 @@ exports[`RegionSelectorModal Component receives and uses regions from navigation style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1327,7 +1327,7 @@ exports[`RegionSelectorModal Component receives and uses regions from navigation "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -1469,7 +1469,7 @@ exports[`RegionSelectorModal Component receives and uses regions from navigation style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1485,7 +1485,7 @@ exports[`RegionSelectorModal Component receives and uses regions from navigation style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1565,7 +1565,7 @@ exports[`RegionSelectorModal Component receives and uses regions from navigation style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1581,7 +1581,7 @@ exports[`RegionSelectorModal Component receives and uses regions from navigation style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2080,7 +2080,7 @@ exports[`RegionSelectorModal Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2232,7 +2232,7 @@ exports[`RegionSelectorModal Component render matches snapshot 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -2399,7 +2399,7 @@ exports[`RegionSelectorModal Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2415,7 +2415,7 @@ exports[`RegionSelectorModal Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2522,7 +2522,7 @@ exports[`RegionSelectorModal Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2538,7 +2538,7 @@ exports[`RegionSelectorModal Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2618,7 +2618,7 @@ exports[`RegionSelectorModal Component render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2634,7 +2634,7 @@ exports[`RegionSelectorModal Component render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2714,7 +2714,7 @@ exports[`RegionSelectorModal Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2730,7 +2730,7 @@ exports[`RegionSelectorModal Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3229,7 +3229,7 @@ exports[`RegionSelectorModal Component render matches snapshot when search has n style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3381,7 +3381,7 @@ exports[`RegionSelectorModal Component render matches snapshot when search has n "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -3486,7 +3486,7 @@ exports[`RegionSelectorModal Component render matches snapshot when search has n style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3979,7 +3979,7 @@ exports[`RegionSelectorModal Component render matches snapshot when searching fo style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4131,7 +4131,7 @@ exports[`RegionSelectorModal Component render matches snapshot when searching fo "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -4302,7 +4302,7 @@ exports[`RegionSelectorModal Component render matches snapshot when searching fo style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -4318,7 +4318,7 @@ exports[`RegionSelectorModal Component render matches snapshot when searching fo style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -4817,7 +4817,7 @@ exports[`RegionSelectorModal Component render matches snapshot with allRegionsSe style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4969,7 +4969,7 @@ exports[`RegionSelectorModal Component render matches snapshot with allRegionsSe "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -5136,7 +5136,7 @@ exports[`RegionSelectorModal Component render matches snapshot with allRegionsSe style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -5152,7 +5152,7 @@ exports[`RegionSelectorModal Component render matches snapshot with allRegionsSe style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -5259,7 +5259,7 @@ exports[`RegionSelectorModal Component render matches snapshot with allRegionsSe style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -5275,7 +5275,7 @@ exports[`RegionSelectorModal Component render matches snapshot with allRegionsSe style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -5355,7 +5355,7 @@ exports[`RegionSelectorModal Component render matches snapshot with allRegionsSe style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -5371,7 +5371,7 @@ exports[`RegionSelectorModal Component render matches snapshot with allRegionsSe style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -5451,7 +5451,7 @@ exports[`RegionSelectorModal Component render matches snapshot with allRegionsSe style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -5467,7 +5467,7 @@ exports[`RegionSelectorModal Component render matches snapshot with allRegionsSe style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -5966,7 +5966,7 @@ exports[`RegionSelectorModal Component render matches snapshot with custom selec style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6118,7 +6118,7 @@ exports[`RegionSelectorModal Component render matches snapshot with custom selec "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -6285,7 +6285,7 @@ exports[`RegionSelectorModal Component render matches snapshot with custom selec style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -6301,7 +6301,7 @@ exports[`RegionSelectorModal Component render matches snapshot with custom selec style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -6381,7 +6381,7 @@ exports[`RegionSelectorModal Component render matches snapshot with custom selec style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -6397,7 +6397,7 @@ exports[`RegionSelectorModal Component render matches snapshot with custom selec style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -6504,7 +6504,7 @@ exports[`RegionSelectorModal Component render matches snapshot with custom selec style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -6520,7 +6520,7 @@ exports[`RegionSelectorModal Component render matches snapshot with custom selec style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -6600,7 +6600,7 @@ exports[`RegionSelectorModal Component render matches snapshot with custom selec style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -6616,7 +6616,7 @@ exports[`RegionSelectorModal Component render matches snapshot with custom selec style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -7115,7 +7115,7 @@ exports[`RegionSelectorModal Component sorts recommended regions to the top when style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -7267,7 +7267,7 @@ exports[`RegionSelectorModal Component sorts recommended regions to the top when "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -7434,7 +7434,7 @@ exports[`RegionSelectorModal Component sorts recommended regions to the top when style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -7450,7 +7450,7 @@ exports[`RegionSelectorModal Component sorts recommended regions to the top when style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -7557,7 +7557,7 @@ exports[`RegionSelectorModal Component sorts recommended regions to the top when style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -7573,7 +7573,7 @@ exports[`RegionSelectorModal Component sorts recommended regions to the top when style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -7653,7 +7653,7 @@ exports[`RegionSelectorModal Component sorts recommended regions to the top when style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -7669,7 +7669,7 @@ exports[`RegionSelectorModal Component sorts recommended regions to the top when style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -7749,7 +7749,7 @@ exports[`RegionSelectorModal Component sorts recommended regions to the top when style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -7765,7 +7765,7 @@ exports[`RegionSelectorModal Component sorts recommended regions to the top when style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/Views/Modals/SsnInfoModal/__snapshots__/SsnInfoModal.test.tsx.snap b/app/components/UI/Ramp/Deposit/Views/Modals/SsnInfoModal/__snapshots__/SsnInfoModal.test.tsx.snap index 9b82d24489a8..55a57eaed033 100644 --- a/app/components/UI/Ramp/Deposit/Views/Modals/SsnInfoModal/__snapshots__/SsnInfoModal.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/Views/Modals/SsnInfoModal/__snapshots__/SsnInfoModal.test.tsx.snap @@ -466,7 +466,7 @@ exports[`SsnInfoModal Component renders correctly and matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -535,7 +535,7 @@ exports[`SsnInfoModal Component renders correctly and matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/Views/Modals/StateSelectorModal/__snapshots__/StateSelectorModal.test.tsx.snap b/app/components/UI/Ramp/Deposit/Views/Modals/StateSelectorModal/__snapshots__/StateSelectorModal.test.tsx.snap index a40ececc3477..01bceba86319 100644 --- a/app/components/UI/Ramp/Deposit/Views/Modals/StateSelectorModal/__snapshots__/StateSelectorModal.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/Views/Modals/StateSelectorModal/__snapshots__/StateSelectorModal.test.tsx.snap @@ -466,7 +466,7 @@ exports[`StateSelectorModal Component Snapshot Tests renders cleared search stat style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -616,7 +616,7 @@ exports[`StateSelectorModal Component Snapshot Tests renders cleared search stat "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -771,7 +771,7 @@ exports[`StateSelectorModal Component Snapshot Tests renders cleared search stat style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1269,7 +1269,7 @@ exports[`StateSelectorModal Component Snapshot Tests renders empty state when no style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1419,7 +1419,7 @@ exports[`StateSelectorModal Component Snapshot Tests renders empty state when no "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -1523,7 +1523,7 @@ exports[`StateSelectorModal Component Snapshot Tests renders empty state when no style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2016,7 +2016,7 @@ exports[`StateSelectorModal Component Snapshot Tests renders filtered state when style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2166,7 +2166,7 @@ exports[`StateSelectorModal Component Snapshot Tests renders filtered state when "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -2321,7 +2321,7 @@ exports[`StateSelectorModal Component Snapshot Tests renders filtered state when style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2819,7 +2819,7 @@ exports[`StateSelectorModal Component Snapshot Tests renders filtered state when style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2969,7 +2969,7 @@ exports[`StateSelectorModal Component Snapshot Tests renders filtered state when "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -3124,7 +3124,7 @@ exports[`StateSelectorModal Component Snapshot Tests renders filtered state when style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3622,7 +3622,7 @@ exports[`StateSelectorModal Component Snapshot Tests renders initial state corre style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3772,7 +3772,7 @@ exports[`StateSelectorModal Component Snapshot Tests renders initial state corre "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -3902,7 +3902,7 @@ exports[`StateSelectorModal Component Snapshot Tests renders initial state corre style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3974,7 +3974,7 @@ exports[`StateSelectorModal Component Snapshot Tests renders initial state corre style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -4046,7 +4046,7 @@ exports[`StateSelectorModal Component Snapshot Tests renders initial state corre style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -4118,7 +4118,7 @@ exports[`StateSelectorModal Component Snapshot Tests renders initial state corre style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -4190,7 +4190,7 @@ exports[`StateSelectorModal Component Snapshot Tests renders initial state corre style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -4688,7 +4688,7 @@ exports[`StateSelectorModal Component Snapshot Tests renders partial search resu style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -4838,7 +4838,7 @@ exports[`StateSelectorModal Component Snapshot Tests renders partial search resu "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -4993,7 +4993,7 @@ exports[`StateSelectorModal Component Snapshot Tests renders partial search resu style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/Views/Modals/TokenSelectorModal/__snapshots__/TokenSelectorModal.test.tsx.snap b/app/components/UI/Ramp/Deposit/Views/Modals/TokenSelectorModal/__snapshots__/TokenSelectorModal.test.tsx.snap index a37b1d024e79..4e90a487078b 100644 --- a/app/components/UI/Ramp/Deposit/Views/Modals/TokenSelectorModal/__snapshots__/TokenSelectorModal.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/Views/Modals/TokenSelectorModal/__snapshots__/TokenSelectorModal.test.tsx.snap @@ -466,7 +466,7 @@ exports[`TokenSelectorModal Component displays empty state when no tokens match style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -681,7 +681,7 @@ exports[`TokenSelectorModal Component displays empty state when no tokens match style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -802,7 +802,7 @@ exports[`TokenSelectorModal Component displays empty state when no tokens match "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -927,7 +927,7 @@ exports[`TokenSelectorModal Component displays empty state when no tokens match style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1422,7 +1422,7 @@ exports[`TokenSelectorModal Component displays network filter selector when pres style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1503,7 +1503,7 @@ exports[`TokenSelectorModal Component displays network filter selector when pres style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1702,7 +1702,7 @@ exports[`TokenSelectorModal Component displays network filter selector when pres style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1869,7 +1869,7 @@ exports[`TokenSelectorModal Component displays network filter selector when pres style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2036,7 +2036,7 @@ exports[`TokenSelectorModal Component displays network filter selector when pres style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2086,7 +2086,7 @@ exports[`TokenSelectorModal Component displays network filter selector when pres style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2578,7 +2578,7 @@ exports[`TokenSelectorModal Component renders correctly and matches snapshot 1`] style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2793,7 +2793,7 @@ exports[`TokenSelectorModal Component renders correctly and matches snapshot 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2914,7 +2914,7 @@ exports[`TokenSelectorModal Component renders correctly and matches snapshot 1`] "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -3196,7 +3196,7 @@ exports[`TokenSelectorModal Component renders correctly and matches snapshot 1`] style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3210,7 +3210,7 @@ exports[`TokenSelectorModal Component renders correctly and matches snapshot 1`] style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3437,7 +3437,7 @@ exports[`TokenSelectorModal Component renders correctly and matches snapshot 1`] style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3451,7 +3451,7 @@ exports[`TokenSelectorModal Component renders correctly and matches snapshot 1`] style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3651,7 +3651,7 @@ exports[`TokenSelectorModal Component renders correctly and matches snapshot 1`] style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3665,7 +3665,7 @@ exports[`TokenSelectorModal Component renders correctly and matches snapshot 1`] style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3865,7 +3865,7 @@ exports[`TokenSelectorModal Component renders correctly and matches snapshot 1`] style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3879,7 +3879,7 @@ exports[`TokenSelectorModal Component renders correctly and matches snapshot 1`] style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4079,7 +4079,7 @@ exports[`TokenSelectorModal Component renders correctly and matches snapshot 1`] style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -4093,7 +4093,7 @@ exports[`TokenSelectorModal Component renders correctly and matches snapshot 1`] style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/Views/Modals/UnsupportedRegionModal/__snapshots__/UnsupportedRegionModal.test.tsx.snap b/app/components/UI/Ramp/Deposit/Views/Modals/UnsupportedRegionModal/__snapshots__/UnsupportedRegionModal.test.tsx.snap index e166994a5b1f..015814223168 100644 --- a/app/components/UI/Ramp/Deposit/Views/Modals/UnsupportedRegionModal/__snapshots__/UnsupportedRegionModal.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/Views/Modals/UnsupportedRegionModal/__snapshots__/UnsupportedRegionModal.test.tsx.snap @@ -446,7 +446,7 @@ exports[`UnsupportedRegionModal handles missing region gracefully 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -513,7 +513,7 @@ exports[`UnsupportedRegionModal handles missing region gracefully 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -536,7 +536,7 @@ exports[`UnsupportedRegionModal handles missing region gracefully 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -548,7 +548,7 @@ exports[`UnsupportedRegionModal handles missing region gracefully 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -562,7 +562,7 @@ exports[`UnsupportedRegionModal handles missing region gracefully 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -610,7 +610,7 @@ exports[`UnsupportedRegionModal handles missing region gracefully 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -646,7 +646,7 @@ exports[`UnsupportedRegionModal handles missing region gracefully 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1118,7 +1118,7 @@ exports[`UnsupportedRegionModal render match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1185,7 +1185,7 @@ exports[`UnsupportedRegionModal render match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1208,7 +1208,7 @@ exports[`UnsupportedRegionModal render match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1222,7 +1222,7 @@ exports[`UnsupportedRegionModal render match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1238,7 +1238,7 @@ exports[`UnsupportedRegionModal render match snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1286,7 +1286,7 @@ exports[`UnsupportedRegionModal render match snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1322,7 +1322,7 @@ exports[`UnsupportedRegionModal render match snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/Views/Modals/UnsupportedStateModal/__snapshots__/UnsupportedStateModal.test.tsx.snap b/app/components/UI/Ramp/Deposit/Views/Modals/UnsupportedStateModal/__snapshots__/UnsupportedStateModal.test.tsx.snap index a115d1981ef8..3d6f7962b129 100644 --- a/app/components/UI/Ramp/Deposit/Views/Modals/UnsupportedStateModal/__snapshots__/UnsupportedStateModal.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/Views/Modals/UnsupportedStateModal/__snapshots__/UnsupportedStateModal.test.tsx.snap @@ -446,7 +446,7 @@ exports[`UnsupportedStateModal render match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -513,7 +513,7 @@ exports[`UnsupportedStateModal render match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -537,7 +537,7 @@ exports[`UnsupportedStateModal render match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -551,7 +551,7 @@ exports[`UnsupportedStateModal render match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -566,7 +566,7 @@ exports[`UnsupportedStateModal render match snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -614,7 +614,7 @@ exports[`UnsupportedStateModal render match snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -650,7 +650,7 @@ exports[`UnsupportedStateModal render match snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/Views/Modals/WebviewModal/__snapshots__/WebviewModal.test.tsx.snap b/app/components/UI/Ramp/Deposit/Views/Modals/WebviewModal/__snapshots__/WebviewModal.test.tsx.snap index 7ed1170bb04d..6bfce5ded811 100644 --- a/app/components/UI/Ramp/Deposit/Views/Modals/WebviewModal/__snapshots__/WebviewModal.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/Views/Modals/WebviewModal/__snapshots__/WebviewModal.test.tsx.snap @@ -1183,7 +1183,7 @@ exports[`WebviewModal Component should display error view when webview HTTP erro style={ { "color": "#ca3542", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1198,7 +1198,7 @@ exports[`WebviewModal Component should display error view when webview HTTP erro style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/Views/OrderProcessing/__snapshots__/OrderProcessing.test.tsx.snap b/app/components/UI/Ramp/Deposit/Views/OrderProcessing/__snapshots__/OrderProcessing.test.tsx.snap index 3f999874f4a9..3ceb2e34fb43 100644 --- a/app/components/UI/Ramp/Deposit/Views/OrderProcessing/__snapshots__/OrderProcessing.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/Views/OrderProcessing/__snapshots__/OrderProcessing.test.tsx.snap @@ -227,7 +227,7 @@ exports[`OrderProcessing Component renders created state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 40, "letterSpacing": 0, "lineHeight": 40, @@ -269,7 +269,7 @@ exports[`OrderProcessing Component renders created state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -296,7 +296,7 @@ exports[`OrderProcessing Component renders created state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -320,7 +320,7 @@ exports[`OrderProcessing Component renders created state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -355,7 +355,7 @@ exports[`OrderProcessing Component renders created state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -381,7 +381,7 @@ exports[`OrderProcessing Component renders created state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -405,7 +405,7 @@ exports[`OrderProcessing Component renders created state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -455,7 +455,7 @@ exports[`OrderProcessing Component renders created state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -469,7 +469,7 @@ exports[`OrderProcessing Component renders created state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -494,7 +494,7 @@ exports[`OrderProcessing Component renders created state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -508,7 +508,7 @@ exports[`OrderProcessing Component renders created state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -577,7 +577,7 @@ exports[`OrderProcessing Component renders created state correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -818,7 +818,7 @@ exports[`OrderProcessing Component renders error state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 40, "letterSpacing": 0, "lineHeight": 40, @@ -860,7 +860,7 @@ exports[`OrderProcessing Component renders error state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -887,7 +887,7 @@ exports[`OrderProcessing Component renders error state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -911,7 +911,7 @@ exports[`OrderProcessing Component renders error state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -946,7 +946,7 @@ exports[`OrderProcessing Component renders error state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -972,7 +972,7 @@ exports[`OrderProcessing Component renders error state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -996,7 +996,7 @@ exports[`OrderProcessing Component renders error state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1046,7 +1046,7 @@ exports[`OrderProcessing Component renders error state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1060,7 +1060,7 @@ exports[`OrderProcessing Component renders error state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1085,7 +1085,7 @@ exports[`OrderProcessing Component renders error state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1099,7 +1099,7 @@ exports[`OrderProcessing Component renders error state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1169,7 +1169,7 @@ exports[`OrderProcessing Component renders error state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1207,7 +1207,7 @@ exports[`OrderProcessing Component renders error state correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1502,7 +1502,7 @@ exports[`OrderProcessing Component renders processing state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 40, "letterSpacing": 0, "lineHeight": 40, @@ -1544,7 +1544,7 @@ exports[`OrderProcessing Component renders processing state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1571,7 +1571,7 @@ exports[`OrderProcessing Component renders processing state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1595,7 +1595,7 @@ exports[`OrderProcessing Component renders processing state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1630,7 +1630,7 @@ exports[`OrderProcessing Component renders processing state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1656,7 +1656,7 @@ exports[`OrderProcessing Component renders processing state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1680,7 +1680,7 @@ exports[`OrderProcessing Component renders processing state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1730,7 +1730,7 @@ exports[`OrderProcessing Component renders processing state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1744,7 +1744,7 @@ exports[`OrderProcessing Component renders processing state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1769,7 +1769,7 @@ exports[`OrderProcessing Component renders processing state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1783,7 +1783,7 @@ exports[`OrderProcessing Component renders processing state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1852,7 +1852,7 @@ exports[`OrderProcessing Component renders processing state correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2093,7 +2093,7 @@ exports[`OrderProcessing Component renders success state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 40, "letterSpacing": 0, "lineHeight": 40, @@ -2135,7 +2135,7 @@ exports[`OrderProcessing Component renders success state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2162,7 +2162,7 @@ exports[`OrderProcessing Component renders success state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2186,7 +2186,7 @@ exports[`OrderProcessing Component renders success state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2221,7 +2221,7 @@ exports[`OrderProcessing Component renders success state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2247,7 +2247,7 @@ exports[`OrderProcessing Component renders success state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2271,7 +2271,7 @@ exports[`OrderProcessing Component renders success state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2321,7 +2321,7 @@ exports[`OrderProcessing Component renders success state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2335,7 +2335,7 @@ exports[`OrderProcessing Component renders success state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2360,7 +2360,7 @@ exports[`OrderProcessing Component renders success state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2374,7 +2374,7 @@ exports[`OrderProcessing Component renders success state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2443,7 +2443,7 @@ exports[`OrderProcessing Component renders success state correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/Views/OtpCode/OtpCode.styles.ts b/app/components/UI/Ramp/Deposit/Views/OtpCode/OtpCode.styles.ts index 48fc5e40bc6c..fade18addecd 100644 --- a/app/components/UI/Ramp/Deposit/Views/OtpCode/OtpCode.styles.ts +++ b/app/components/UI/Ramp/Deposit/Views/OtpCode/OtpCode.styles.ts @@ -1,5 +1,6 @@ import { Theme } from '../../../../../../util/theme/models'; import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../../styles/common'; import { getOtpCellSize } from '../../../utils/getOtpCellSize'; const styleSheet = (params: { theme: Theme }) => { @@ -10,7 +11,7 @@ const styleSheet = (params: { theme: Theme }) => { return StyleSheet.create({ title: { marginTop: 24, - fontWeight: 'bold', + ...fontStyles.bold, }, description: { marginTop: 8, @@ -35,7 +36,7 @@ const styleSheet = (params: { theme: Theme }) => { fontSize: 24, lineHeight: 30, textAlign: 'center', - fontWeight: 'bold', + ...fontStyles.bold, }, focusCell: { borderColor: theme.colors.info.default, diff --git a/app/components/UI/Ramp/Deposit/Views/OtpCode/__snapshots__/OtpCode.test.tsx.snap b/app/components/UI/Ramp/Deposit/Views/OtpCode/__snapshots__/OtpCode.test.tsx.snap index 159b1b8af969..c0b66805a6f8 100644 --- a/app/components/UI/Ramp/Deposit/Views/OtpCode/__snapshots__/OtpCode.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/Views/OtpCode/__snapshots__/OtpCode.test.tsx.snap @@ -458,9 +458,8 @@ exports[`OtpCode Screen calls resendOtp when resend link is clicked and properly style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 32, "marginTop": 24, @@ -474,7 +473,7 @@ exports[`OtpCode Screen calls resendOtp when resend link is clicked and properly style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -521,9 +520,8 @@ exports[`OtpCode Screen calls resendOtp when resend link is clicked and properly style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -554,9 +552,8 @@ exports[`OtpCode Screen calls resendOtp when resend link is clicked and properly style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -587,9 +584,8 @@ exports[`OtpCode Screen calls resendOtp when resend link is clicked and properly style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -620,9 +616,8 @@ exports[`OtpCode Screen calls resendOtp when resend link is clicked and properly style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -653,9 +648,8 @@ exports[`OtpCode Screen calls resendOtp when resend link is clicked and properly style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -686,9 +680,8 @@ exports[`OtpCode Screen calls resendOtp when resend link is clicked and properly style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -748,7 +741,7 @@ exports[`OtpCode Screen calls resendOtp when resend link is clicked and properly style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -806,7 +799,7 @@ exports[`OtpCode Screen calls resendOtp when resend link is clicked and properly style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1300,9 +1293,8 @@ exports[`OtpCode Screen render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 32, "marginTop": 24, @@ -1316,7 +1308,7 @@ exports[`OtpCode Screen render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1363,9 +1355,8 @@ exports[`OtpCode Screen render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -1396,9 +1387,8 @@ exports[`OtpCode Screen render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -1429,9 +1419,8 @@ exports[`OtpCode Screen render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -1462,9 +1451,8 @@ exports[`OtpCode Screen render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -1495,9 +1483,8 @@ exports[`OtpCode Screen render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -1528,9 +1515,8 @@ exports[`OtpCode Screen render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -1590,7 +1576,7 @@ exports[`OtpCode Screen render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1608,7 +1594,7 @@ exports[`OtpCode Screen render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1668,7 +1654,7 @@ exports[`OtpCode Screen render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2162,9 +2148,8 @@ exports[`OtpCode Screen renders cooldown timer snapshot after resending OTP 1`] style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 32, "marginTop": 24, @@ -2178,7 +2163,7 @@ exports[`OtpCode Screen renders cooldown timer snapshot after resending OTP 1`] style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2225,9 +2210,8 @@ exports[`OtpCode Screen renders cooldown timer snapshot after resending OTP 1`] style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -2258,9 +2242,8 @@ exports[`OtpCode Screen renders cooldown timer snapshot after resending OTP 1`] style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -2291,9 +2274,8 @@ exports[`OtpCode Screen renders cooldown timer snapshot after resending OTP 1`] style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -2324,9 +2306,8 @@ exports[`OtpCode Screen renders cooldown timer snapshot after resending OTP 1`] style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -2357,9 +2338,8 @@ exports[`OtpCode Screen renders cooldown timer snapshot after resending OTP 1`] style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -2390,9 +2370,8 @@ exports[`OtpCode Screen renders cooldown timer snapshot after resending OTP 1`] style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -2452,7 +2431,7 @@ exports[`OtpCode Screen renders cooldown timer snapshot after resending OTP 1`] style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2510,7 +2489,7 @@ exports[`OtpCode Screen renders cooldown timer snapshot after resending OTP 1`] style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3004,9 +2983,8 @@ exports[`OtpCode Screen renders error snapshot when API call fails 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 32, "marginTop": 24, @@ -3020,7 +2998,7 @@ exports[`OtpCode Screen renders error snapshot when API call fails 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3067,9 +3045,8 @@ exports[`OtpCode Screen renders error snapshot when API call fails 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -3102,9 +3079,8 @@ exports[`OtpCode Screen renders error snapshot when API call fails 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -3137,9 +3113,8 @@ exports[`OtpCode Screen renders error snapshot when API call fails 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -3172,9 +3147,8 @@ exports[`OtpCode Screen renders error snapshot when API call fails 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -3207,9 +3181,8 @@ exports[`OtpCode Screen renders error snapshot when API call fails 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -3242,9 +3215,8 @@ exports[`OtpCode Screen renders error snapshot when API call fails 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -3291,7 +3263,7 @@ exports[`OtpCode Screen renders error snapshot when API call fails 1`] = ` style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3320,7 +3292,7 @@ exports[`OtpCode Screen renders error snapshot when API call fails 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3338,7 +3310,7 @@ exports[`OtpCode Screen renders error snapshot when API call fails 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3397,7 +3369,7 @@ exports[`OtpCode Screen renders error snapshot when API call fails 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3891,9 +3863,8 @@ exports[`OtpCode Screen renders resend error snapshot when resend fails 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 32, "marginTop": 24, @@ -3907,7 +3878,7 @@ exports[`OtpCode Screen renders resend error snapshot when resend fails 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3954,9 +3925,8 @@ exports[`OtpCode Screen renders resend error snapshot when resend fails 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -3987,9 +3957,8 @@ exports[`OtpCode Screen renders resend error snapshot when resend fails 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -4020,9 +3989,8 @@ exports[`OtpCode Screen renders resend error snapshot when resend fails 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -4053,9 +4021,8 @@ exports[`OtpCode Screen renders resend error snapshot when resend fails 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -4086,9 +4053,8 @@ exports[`OtpCode Screen renders resend error snapshot when resend fails 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -4119,9 +4085,8 @@ exports[`OtpCode Screen renders resend error snapshot when resend fails 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 30, "textAlign": "center", @@ -4181,7 +4146,7 @@ exports[`OtpCode Screen renders resend error snapshot when resend fails 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4239,7 +4204,7 @@ exports[`OtpCode Screen renders resend error snapshot when resend fails 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/Views/Root/GetStarted/GetStarted.styles.ts b/app/components/UI/Ramp/Deposit/Views/Root/GetStarted/GetStarted.styles.ts new file mode 100644 index 000000000000..a40b1894951a --- /dev/null +++ b/app/components/UI/Ramp/Deposit/Views/Root/GetStarted/GetStarted.styles.ts @@ -0,0 +1,40 @@ +import { Dimensions, StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../../../styles/common'; +import { Theme } from '../../../../../../../util/theme/models'; + +const screenWidth = Dimensions.get('window').width; + +const styleSheet = (params: { theme: Theme }) => { + const { theme } = params; + + return StyleSheet.create({ + title: { + marginBottom: 16, + ...fontStyles.bold, + }, + getStartedImageWrapper: { + alignItems: 'center', + }, + getStartedImage: { + width: screenWidth * 0.65, + height: screenWidth * 0.49, + alignSelf: 'center', + marginVertical: 16, + }, + bulletPointContainer: { + marginVertical: 8, + flexDirection: 'row', + }, + bulletPointContent: { + flex: 1, + marginLeft: 12, + }, + bulletPointDescription: { + fontSize: 14, + lineHeight: 20, + color: theme.colors.text.alternative, + }, + }); +}; + +export default styleSheet; diff --git a/app/components/UI/Ramp/Deposit/Views/Root/__snapshots__/Root.test.tsx.snap b/app/components/UI/Ramp/Deposit/Views/Root/__snapshots__/Root.test.tsx.snap index 9f710673bf48..36d78cda4150 100644 --- a/app/components/UI/Ramp/Deposit/Views/Root/__snapshots__/Root.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/Views/Root/__snapshots__/Root.test.tsx.snap @@ -131,7 +131,7 @@ exports[`Root Component render matches snapshot 1`] = ` - - @@ -242,7 +225,7 @@ exports[`Root Component render matches snapshot 1`] = ` - - + + `; diff --git a/app/components/UI/Ramp/Deposit/Views/VerifyIdentity/VerifyIdentity.styles.ts b/app/components/UI/Ramp/Deposit/Views/VerifyIdentity/VerifyIdentity.styles.ts index 622ac9694926..f03f5669c396 100644 --- a/app/components/UI/Ramp/Deposit/Views/VerifyIdentity/VerifyIdentity.styles.ts +++ b/app/components/UI/Ramp/Deposit/Views/VerifyIdentity/VerifyIdentity.styles.ts @@ -1,4 +1,5 @@ import { Dimensions, StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../../styles/common'; import { Theme } from '../../../../../../util/theme/models'; const screenWidth = Dimensions.get('window').width; @@ -9,7 +10,7 @@ const styleSheet = (params: { theme: Theme }) => { return StyleSheet.create({ title: { marginTop: 16, - fontWeight: 'bold', + ...fontStyles.bold, }, image: { width: screenWidth * 0.65, diff --git a/app/components/UI/Ramp/Deposit/Views/VerifyIdentity/__snapshots__/VerifyIdentity.test.tsx.snap b/app/components/UI/Ramp/Deposit/Views/VerifyIdentity/__snapshots__/VerifyIdentity.test.tsx.snap index 7d3f1ae59f9e..e97799e926fa 100644 --- a/app/components/UI/Ramp/Deposit/Views/VerifyIdentity/__snapshots__/VerifyIdentity.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/Views/VerifyIdentity/__snapshots__/VerifyIdentity.test.tsx.snap @@ -387,9 +387,8 @@ exports[`VerifyIdentity Component renders verify identity screen with all conten style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, - "fontWeight": "bold", "letterSpacing": 0, "lineHeight": 32, "marginTop": 16, @@ -403,7 +402,7 @@ exports[`VerifyIdentity Component renders verify identity screen with all conten style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -418,7 +417,7 @@ exports[`VerifyIdentity Component renders verify identity screen with all conten style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -432,7 +431,7 @@ exports[`VerifyIdentity Component renders verify identity screen with all conten style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -449,7 +448,7 @@ exports[`VerifyIdentity Component renders verify identity screen with all conten style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -464,7 +463,7 @@ exports[`VerifyIdentity Component renders verify identity screen with all conten style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -501,7 +500,7 @@ exports[`VerifyIdentity Component renders verify identity screen with all conten style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -516,7 +515,7 @@ exports[`VerifyIdentity Component renders verify identity screen with all conten style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -533,7 +532,7 @@ exports[`VerifyIdentity Component renders verify identity screen with all conten style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -572,7 +571,7 @@ exports[`VerifyIdentity Component renders verify identity screen with all conten style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/components/BankDetailRow/__snapshots__/BankDetailRow.test.tsx.snap b/app/components/UI/Ramp/Deposit/components/BankDetailRow/__snapshots__/BankDetailRow.test.tsx.snap index 1139e3429dce..518c89052134 100644 --- a/app/components/UI/Ramp/Deposit/components/BankDetailRow/__snapshots__/BankDetailRow.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/components/BankDetailRow/__snapshots__/BankDetailRow.test.tsx.snap @@ -14,7 +14,7 @@ exports[`BankDetailRow render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -42,7 +42,7 @@ exports[`BankDetailRow render matches snapshot 1`] = ` "color": "#686e7d", "flex": 1, "flexWrap": "wrap", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -88,7 +88,7 @@ exports[`BankDetailRow render matches snapshot with different values 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -116,7 +116,7 @@ exports[`BankDetailRow render matches snapshot with different values 1`] = ` "color": "#686e7d", "flex": 1, "flexWrap": "wrap", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/components/DepositDateField/__snapshots__/DepositDateField.test.tsx.snap b/app/components/UI/Ramp/Deposit/components/DepositDateField/__snapshots__/DepositDateField.test.tsx.snap index ea21985097e1..63c1d5c1800e 100644 --- a/app/components/UI/Ramp/Deposit/components/DepositDateField/__snapshots__/DepositDateField.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/components/DepositDateField/__snapshots__/DepositDateField.test.tsx.snap @@ -17,7 +17,7 @@ exports[`DepositDateField Platform specific rendering date picker matches snapsh style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -151,7 +151,7 @@ exports[`DepositDateField Platform specific rendering date picker matches snapsh style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -285,7 +285,7 @@ exports[`DepositDateField render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -419,7 +419,7 @@ exports[`DepositDateField render matches snapshot with a value 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -553,7 +553,7 @@ exports[`DepositDateField render matches snapshot with an error 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -672,7 +672,7 @@ exports[`DepositDateField render matches snapshot with an error 1`] = ` style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 24, @@ -702,7 +702,7 @@ exports[`DepositDateField render matches snapshot with empty value 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/components/DepositOrderContent/__snapshots__/DepositOrderContent.test.tsx.snap b/app/components/UI/Ramp/Deposit/components/DepositOrderContent/__snapshots__/DepositOrderContent.test.tsx.snap index 5d619c82aaf9..af4236454a9d 100644 --- a/app/components/UI/Ramp/Deposit/components/DepositOrderContent/__snapshots__/DepositOrderContent.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/components/DepositOrderContent/__snapshots__/DepositOrderContent.test.tsx.snap @@ -177,7 +177,7 @@ exports[`DepositOrderContent Component renders bank transfer state correctly 1`] style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 40, "letterSpacing": 0, "lineHeight": 40, @@ -195,7 +195,7 @@ exports[`DepositOrderContent Component renders bank transfer state correctly 1`] style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -234,7 +234,7 @@ exports[`DepositOrderContent Component renders bank transfer state correctly 1`] style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -261,7 +261,7 @@ exports[`DepositOrderContent Component renders bank transfer state correctly 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -285,7 +285,7 @@ exports[`DepositOrderContent Component renders bank transfer state correctly 1`] style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -320,7 +320,7 @@ exports[`DepositOrderContent Component renders bank transfer state correctly 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -346,7 +346,7 @@ exports[`DepositOrderContent Component renders bank transfer state correctly 1`] style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -370,7 +370,7 @@ exports[`DepositOrderContent Component renders bank transfer state correctly 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -420,7 +420,7 @@ exports[`DepositOrderContent Component renders bank transfer state correctly 1`] style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -434,7 +434,7 @@ exports[`DepositOrderContent Component renders bank transfer state correctly 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -459,7 +459,7 @@ exports[`DepositOrderContent Component renders bank transfer state correctly 1`] style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -473,7 +473,7 @@ exports[`DepositOrderContent Component renders bank transfer state correctly 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -660,7 +660,7 @@ exports[`DepositOrderContent Component renders cancelled state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 40, "letterSpacing": 0, "lineHeight": 40, @@ -678,7 +678,7 @@ exports[`DepositOrderContent Component renders cancelled state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -717,7 +717,7 @@ exports[`DepositOrderContent Component renders cancelled state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -744,7 +744,7 @@ exports[`DepositOrderContent Component renders cancelled state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -768,7 +768,7 @@ exports[`DepositOrderContent Component renders cancelled state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -803,7 +803,7 @@ exports[`DepositOrderContent Component renders cancelled state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -829,7 +829,7 @@ exports[`DepositOrderContent Component renders cancelled state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -853,7 +853,7 @@ exports[`DepositOrderContent Component renders cancelled state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -903,7 +903,7 @@ exports[`DepositOrderContent Component renders cancelled state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -917,7 +917,7 @@ exports[`DepositOrderContent Component renders cancelled state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -942,7 +942,7 @@ exports[`DepositOrderContent Component renders cancelled state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -956,7 +956,7 @@ exports[`DepositOrderContent Component renders cancelled state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1143,7 +1143,7 @@ exports[`DepositOrderContent Component renders error state correctly with status style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 40, "letterSpacing": 0, "lineHeight": 40, @@ -1161,7 +1161,7 @@ exports[`DepositOrderContent Component renders error state correctly with status style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1200,7 +1200,7 @@ exports[`DepositOrderContent Component renders error state correctly with status style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1227,7 +1227,7 @@ exports[`DepositOrderContent Component renders error state correctly with status style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1251,7 +1251,7 @@ exports[`DepositOrderContent Component renders error state correctly with status style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1286,7 +1286,7 @@ exports[`DepositOrderContent Component renders error state correctly with status style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1312,7 +1312,7 @@ exports[`DepositOrderContent Component renders error state correctly with status style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1336,7 +1336,7 @@ exports[`DepositOrderContent Component renders error state correctly with status style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1386,7 +1386,7 @@ exports[`DepositOrderContent Component renders error state correctly with status style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1400,7 +1400,7 @@ exports[`DepositOrderContent Component renders error state correctly with status style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1425,7 +1425,7 @@ exports[`DepositOrderContent Component renders error state correctly with status style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1439,7 +1439,7 @@ exports[`DepositOrderContent Component renders error state correctly with status style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1626,7 +1626,7 @@ exports[`DepositOrderContent Component renders error state with specific failure style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 40, "letterSpacing": 0, "lineHeight": 40, @@ -1644,7 +1644,7 @@ exports[`DepositOrderContent Component renders error state with specific failure style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1683,7 +1683,7 @@ exports[`DepositOrderContent Component renders error state with specific failure style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1710,7 +1710,7 @@ exports[`DepositOrderContent Component renders error state with specific failure style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1734,7 +1734,7 @@ exports[`DepositOrderContent Component renders error state with specific failure style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1769,7 +1769,7 @@ exports[`DepositOrderContent Component renders error state with specific failure style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1795,7 +1795,7 @@ exports[`DepositOrderContent Component renders error state with specific failure style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1819,7 +1819,7 @@ exports[`DepositOrderContent Component renders error state with specific failure style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1869,7 +1869,7 @@ exports[`DepositOrderContent Component renders error state with specific failure style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1883,7 +1883,7 @@ exports[`DepositOrderContent Component renders error state with specific failure style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1908,7 +1908,7 @@ exports[`DepositOrderContent Component renders error state with specific failure style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1922,7 +1922,7 @@ exports[`DepositOrderContent Component renders error state with specific failure style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2109,7 +2109,7 @@ exports[`DepositOrderContent Component renders no subtitle when statusDescriptio style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 40, "letterSpacing": 0, "lineHeight": 40, @@ -2151,7 +2151,7 @@ exports[`DepositOrderContent Component renders no subtitle when statusDescriptio style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2178,7 +2178,7 @@ exports[`DepositOrderContent Component renders no subtitle when statusDescriptio style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2202,7 +2202,7 @@ exports[`DepositOrderContent Component renders no subtitle when statusDescriptio style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2237,7 +2237,7 @@ exports[`DepositOrderContent Component renders no subtitle when statusDescriptio style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2263,7 +2263,7 @@ exports[`DepositOrderContent Component renders no subtitle when statusDescriptio style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2287,7 +2287,7 @@ exports[`DepositOrderContent Component renders no subtitle when statusDescriptio style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2337,7 +2337,7 @@ exports[`DepositOrderContent Component renders no subtitle when statusDescriptio style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2351,7 +2351,7 @@ exports[`DepositOrderContent Component renders no subtitle when statusDescriptio style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2376,7 +2376,7 @@ exports[`DepositOrderContent Component renders no subtitle when statusDescriptio style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2390,7 +2390,7 @@ exports[`DepositOrderContent Component renders no subtitle when statusDescriptio style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2581,7 +2581,7 @@ exports[`DepositOrderContent Component renders no subtitle when statusDescriptio style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 40, "letterSpacing": 0, "lineHeight": 40, @@ -2623,7 +2623,7 @@ exports[`DepositOrderContent Component renders no subtitle when statusDescriptio style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2650,7 +2650,7 @@ exports[`DepositOrderContent Component renders no subtitle when statusDescriptio style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2674,7 +2674,7 @@ exports[`DepositOrderContent Component renders no subtitle when statusDescriptio style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2709,7 +2709,7 @@ exports[`DepositOrderContent Component renders no subtitle when statusDescriptio style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2735,7 +2735,7 @@ exports[`DepositOrderContent Component renders no subtitle when statusDescriptio style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2759,7 +2759,7 @@ exports[`DepositOrderContent Component renders no subtitle when statusDescriptio style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2809,7 +2809,7 @@ exports[`DepositOrderContent Component renders no subtitle when statusDescriptio style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2823,7 +2823,7 @@ exports[`DepositOrderContent Component renders no subtitle when statusDescriptio style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2848,7 +2848,7 @@ exports[`DepositOrderContent Component renders no subtitle when statusDescriptio style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2862,7 +2862,7 @@ exports[`DepositOrderContent Component renders no subtitle when statusDescriptio style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3053,7 +3053,7 @@ exports[`DepositOrderContent Component renders processing state correctly 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 40, "letterSpacing": 0, "lineHeight": 40, @@ -3071,7 +3071,7 @@ exports[`DepositOrderContent Component renders processing state correctly 1`] = style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3110,7 +3110,7 @@ exports[`DepositOrderContent Component renders processing state correctly 1`] = style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3137,7 +3137,7 @@ exports[`DepositOrderContent Component renders processing state correctly 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3161,7 +3161,7 @@ exports[`DepositOrderContent Component renders processing state correctly 1`] = style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3196,7 +3196,7 @@ exports[`DepositOrderContent Component renders processing state correctly 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3222,7 +3222,7 @@ exports[`DepositOrderContent Component renders processing state correctly 1`] = style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3246,7 +3246,7 @@ exports[`DepositOrderContent Component renders processing state correctly 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3296,7 +3296,7 @@ exports[`DepositOrderContent Component renders processing state correctly 1`] = style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3310,7 +3310,7 @@ exports[`DepositOrderContent Component renders processing state correctly 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3335,7 +3335,7 @@ exports[`DepositOrderContent Component renders processing state correctly 1`] = style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3349,7 +3349,7 @@ exports[`DepositOrderContent Component renders processing state correctly 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3536,7 +3536,7 @@ exports[`DepositOrderContent Component renders success state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 40, "letterSpacing": 0, "lineHeight": 40, @@ -3554,7 +3554,7 @@ exports[`DepositOrderContent Component renders success state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3593,7 +3593,7 @@ exports[`DepositOrderContent Component renders success state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3620,7 +3620,7 @@ exports[`DepositOrderContent Component renders success state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3644,7 +3644,7 @@ exports[`DepositOrderContent Component renders success state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3679,7 +3679,7 @@ exports[`DepositOrderContent Component renders success state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3705,7 +3705,7 @@ exports[`DepositOrderContent Component renders success state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3729,7 +3729,7 @@ exports[`DepositOrderContent Component renders success state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3779,7 +3779,7 @@ exports[`DepositOrderContent Component renders success state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3793,7 +3793,7 @@ exports[`DepositOrderContent Component renders success state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3818,7 +3818,7 @@ exports[`DepositOrderContent Component renders success state correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3832,7 +3832,7 @@ exports[`DepositOrderContent Component renders success state correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4019,7 +4019,7 @@ exports[`DepositOrderContent Component renders with crypto fee when regular fee style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 40, "letterSpacing": 0, "lineHeight": 40, @@ -4037,7 +4037,7 @@ exports[`DepositOrderContent Component renders with crypto fee when regular fee style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4076,7 +4076,7 @@ exports[`DepositOrderContent Component renders with crypto fee when regular fee style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4103,7 +4103,7 @@ exports[`DepositOrderContent Component renders with crypto fee when regular fee style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4127,7 +4127,7 @@ exports[`DepositOrderContent Component renders with crypto fee when regular fee style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4162,7 +4162,7 @@ exports[`DepositOrderContent Component renders with crypto fee when regular fee style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4188,7 +4188,7 @@ exports[`DepositOrderContent Component renders with crypto fee when regular fee style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4212,7 +4212,7 @@ exports[`DepositOrderContent Component renders with crypto fee when regular fee style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4262,7 +4262,7 @@ exports[`DepositOrderContent Component renders with crypto fee when regular fee style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4276,7 +4276,7 @@ exports[`DepositOrderContent Component renders with crypto fee when regular fee style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4301,7 +4301,7 @@ exports[`DepositOrderContent Component renders with crypto fee when regular fee style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4315,7 +4315,7 @@ exports[`DepositOrderContent Component renders with crypto fee when regular fee style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4502,7 +4502,7 @@ exports[`DepositOrderContent Component renders without fee when fee is not provi style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 40, "letterSpacing": 0, "lineHeight": 40, @@ -4520,7 +4520,7 @@ exports[`DepositOrderContent Component renders without fee when fee is not provi style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4559,7 +4559,7 @@ exports[`DepositOrderContent Component renders without fee when fee is not provi style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4586,7 +4586,7 @@ exports[`DepositOrderContent Component renders without fee when fee is not provi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4610,7 +4610,7 @@ exports[`DepositOrderContent Component renders without fee when fee is not provi style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4645,7 +4645,7 @@ exports[`DepositOrderContent Component renders without fee when fee is not provi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4671,7 +4671,7 @@ exports[`DepositOrderContent Component renders without fee when fee is not provi style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4695,7 +4695,7 @@ exports[`DepositOrderContent Component renders without fee when fee is not provi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4745,7 +4745,7 @@ exports[`DepositOrderContent Component renders without fee when fee is not provi style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4759,7 +4759,7 @@ exports[`DepositOrderContent Component renders without fee when fee is not provi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4784,7 +4784,7 @@ exports[`DepositOrderContent Component renders without fee when fee is not provi style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4798,7 +4798,7 @@ exports[`DepositOrderContent Component renders without fee when fee is not provi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/components/DepositPhoneField/__snapshots__/DepositPhoneField.test.tsx.snap b/app/components/UI/Ramp/Deposit/components/DepositPhoneField/__snapshots__/DepositPhoneField.test.tsx.snap index 6629d3e41951..9419f7593b2b 100644 --- a/app/components/UI/Ramp/Deposit/components/DepositPhoneField/__snapshots__/DepositPhoneField.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/components/DepositPhoneField/__snapshots__/DepositPhoneField.test.tsx.snap @@ -17,7 +17,7 @@ exports[`DepositPhoneField renders correctly after flag button press 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -97,7 +97,7 @@ exports[`DepositPhoneField renders correctly after flag button press 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -111,7 +111,7 @@ exports[`DepositPhoneField renders correctly after flag button press 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -147,7 +147,7 @@ exports[`DepositPhoneField renders correctly after flag button press 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -184,7 +184,7 @@ exports[`DepositPhoneField renders correctly after input change 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -264,7 +264,7 @@ exports[`DepositPhoneField renders correctly after input change 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -278,7 +278,7 @@ exports[`DepositPhoneField renders correctly after input change 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -314,7 +314,7 @@ exports[`DepositPhoneField renders correctly after input change 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -351,7 +351,7 @@ exports[`DepositPhoneField renders correctly with default props 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -431,7 +431,7 @@ exports[`DepositPhoneField renders correctly with default props 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -445,7 +445,7 @@ exports[`DepositPhoneField renders correctly with default props 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -481,7 +481,7 @@ exports[`DepositPhoneField renders correctly with default props 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -518,7 +518,7 @@ exports[`DepositPhoneField renders correctly with different region 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -598,7 +598,7 @@ exports[`DepositPhoneField renders correctly with different region 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -612,7 +612,7 @@ exports[`DepositPhoneField renders correctly with different region 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -648,7 +648,7 @@ exports[`DepositPhoneField renders correctly with different region 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -685,7 +685,7 @@ exports[`DepositPhoneField renders correctly with error message 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -765,7 +765,7 @@ exports[`DepositPhoneField renders correctly with error message 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -779,7 +779,7 @@ exports[`DepositPhoneField renders correctly with error message 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -815,7 +815,7 @@ exports[`DepositPhoneField renders correctly with error message 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -837,7 +837,7 @@ exports[`DepositPhoneField renders correctly with error message 1`] = ` style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 24, @@ -867,7 +867,7 @@ exports[`DepositPhoneField renders correctly with long phone number 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -947,7 +947,7 @@ exports[`DepositPhoneField renders correctly with long phone number 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -961,7 +961,7 @@ exports[`DepositPhoneField renders correctly with long phone number 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -997,7 +997,7 @@ exports[`DepositPhoneField renders correctly with long phone number 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -1034,7 +1034,7 @@ exports[`DepositPhoneField renders correctly with onSubmitEditing callback 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1114,7 +1114,7 @@ exports[`DepositPhoneField renders correctly with onSubmitEditing callback 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1128,7 +1128,7 @@ exports[`DepositPhoneField renders correctly with onSubmitEditing callback 1`] = style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -1165,7 +1165,7 @@ exports[`DepositPhoneField renders correctly with onSubmitEditing callback 1`] = "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -1202,7 +1202,7 @@ exports[`DepositPhoneField renders correctly with special characters in phone nu style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1282,7 +1282,7 @@ exports[`DepositPhoneField renders correctly with special characters in phone nu style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1296,7 +1296,7 @@ exports[`DepositPhoneField renders correctly with special characters in phone nu style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -1332,7 +1332,7 @@ exports[`DepositPhoneField renders correctly with special characters in phone nu "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -1369,7 +1369,7 @@ exports[`DepositPhoneField renders correctly with unsupported region 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1449,7 +1449,7 @@ exports[`DepositPhoneField renders correctly with unsupported region 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1463,7 +1463,7 @@ exports[`DepositPhoneField renders correctly with unsupported region 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -1499,7 +1499,7 @@ exports[`DepositPhoneField renders correctly with unsupported region 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -1536,7 +1536,7 @@ exports[`DepositPhoneField renders correctly with value 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1616,7 +1616,7 @@ exports[`DepositPhoneField renders correctly with value 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1630,7 +1630,7 @@ exports[`DepositPhoneField renders correctly with value 1`] = ` style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -1666,7 +1666,7 @@ exports[`DepositPhoneField renders correctly with value 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -1703,7 +1703,7 @@ exports[`DepositPhoneField updates phone region when region is selected from mod style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1783,7 +1783,7 @@ exports[`DepositPhoneField updates phone region when region is selected from mod style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1797,7 +1797,7 @@ exports[`DepositPhoneField updates phone region when region is selected from mod style={ { "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -1833,7 +1833,7 @@ exports[`DepositPhoneField updates phone region when region is selected from mod "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, diff --git a/app/components/UI/Ramp/Deposit/components/ErrorView/__snapshots__/ErrorView.test.tsx.snap b/app/components/UI/Ramp/Deposit/components/ErrorView/__snapshots__/ErrorView.test.tsx.snap index ca454810f978..93415f0dbc5d 100644 --- a/app/components/UI/Ramp/Deposit/components/ErrorView/__snapshots__/ErrorView.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/components/ErrorView/__snapshots__/ErrorView.test.tsx.snap @@ -386,7 +386,7 @@ exports[`ErrorView Component renders with all props and matches snapshot 1`] = ` style={ { "color": "#ca3542", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -401,7 +401,7 @@ exports[`ErrorView Component renders with all props and matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -437,7 +437,7 @@ exports[`ErrorView Component renders with all props and matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -848,7 +848,7 @@ exports[`ErrorView Component renders with default props and matches snapshot 1`] style={ { "color": "#ca3542", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -863,7 +863,7 @@ exports[`ErrorView Component renders with default props and matches snapshot 1`] style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/components/NetworksFilterBar/__snapshots__/NetworksFilterBar.test.tsx.snap b/app/components/UI/Ramp/Deposit/components/NetworksFilterBar/__snapshots__/NetworksFilterBar.test.tsx.snap index 506048154892..d6d396867283 100644 --- a/app/components/UI/Ramp/Deposit/components/NetworksFilterBar/__snapshots__/NetworksFilterBar.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/components/NetworksFilterBar/__snapshots__/NetworksFilterBar.test.tsx.snap @@ -61,7 +61,7 @@ exports[`NetworksFilterBar renders correctly when networkFilter is a subset of u style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -138,7 +138,7 @@ exports[`NetworksFilterBar renders correctly when networkFilter is a subset of u style={ { "color": "#ffffff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -201,7 +201,7 @@ exports[`NetworksFilterBar renders correctly when networkFilter is a subset of u style={ { "color": "#ffffff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -239,7 +239,7 @@ exports[`NetworksFilterBar renders correctly when networkFilter is a subset of u style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -414,7 +414,7 @@ exports[`NetworksFilterBar renders correctly when networkFilter is null 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -603,7 +603,7 @@ exports[`NetworksFilterBar renders correctly when networkFilter is the same as u style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/components/NetworksFilterSelector/__snapshots__/NetworksFilterSelector.test.tsx.snap b/app/components/UI/Ramp/Deposit/components/NetworksFilterSelector/__snapshots__/NetworksFilterSelector.test.tsx.snap index 3601248d2c2a..330088c114a2 100644 --- a/app/components/UI/Ramp/Deposit/components/NetworksFilterSelector/__snapshots__/NetworksFilterSelector.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/components/NetworksFilterSelector/__snapshots__/NetworksFilterSelector.test.tsx.snap @@ -28,7 +28,7 @@ exports[`NetworksFilterSelector renders correctly when networkFilter is a subset style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -227,7 +227,7 @@ exports[`NetworksFilterSelector renders correctly when networkFilter is a subset style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -394,7 +394,7 @@ exports[`NetworksFilterSelector renders correctly when networkFilter is a subset style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -545,7 +545,7 @@ exports[`NetworksFilterSelector renders correctly when networkFilter is a subset style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -595,7 +595,7 @@ exports[`NetworksFilterSelector renders correctly when networkFilter is a subset style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -637,7 +637,7 @@ exports[`NetworksFilterSelector renders correctly when networkFilter is null 1`] style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -820,7 +820,7 @@ exports[`NetworksFilterSelector renders correctly when networkFilter is null 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -971,7 +971,7 @@ exports[`NetworksFilterSelector renders correctly when networkFilter is null 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1122,7 +1122,7 @@ exports[`NetworksFilterSelector renders correctly when networkFilter is null 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1172,7 +1172,7 @@ exports[`NetworksFilterSelector renders correctly when networkFilter is null 1`] style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1214,7 +1214,7 @@ exports[`NetworksFilterSelector renders correctly when networkFilter is the same style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1413,7 +1413,7 @@ exports[`NetworksFilterSelector renders correctly when networkFilter is the same style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1580,7 +1580,7 @@ exports[`NetworksFilterSelector renders correctly when networkFilter is the same style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1747,7 +1747,7 @@ exports[`NetworksFilterSelector renders correctly when networkFilter is the same style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1797,7 +1797,7 @@ exports[`NetworksFilterSelector renders correctly when networkFilter is the same style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/Deposit/components/SdkErrorAlert/__snapshots__/SdkErrorAlert.test.tsx.snap b/app/components/UI/Ramp/Deposit/components/SdkErrorAlert/__snapshots__/SdkErrorAlert.test.tsx.snap index f70a3c05760e..6b2e8d51bc33 100644 --- a/app/components/UI/Ramp/Deposit/components/SdkErrorAlert/__snapshots__/SdkErrorAlert.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/components/SdkErrorAlert/__snapshots__/SdkErrorAlert.test.tsx.snap @@ -48,7 +48,7 @@ exports[`SdkErrorAlert disables retry button when isRetrying is true 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -69,7 +69,7 @@ exports[`SdkErrorAlert disables retry button when isRetrying is true 1`] = ` { "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -82,7 +82,7 @@ exports[`SdkErrorAlert disables retry button when isRetrying is true 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -144,7 +144,7 @@ exports[`SdkErrorAlert does not render retry button when onRetry is not provided style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -205,7 +205,7 @@ exports[`SdkErrorAlert renders payment methods error message 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -226,7 +226,7 @@ exports[`SdkErrorAlert renders payment methods error message 1`] = ` { "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -239,7 +239,7 @@ exports[`SdkErrorAlert renders payment methods error message 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -301,7 +301,7 @@ exports[`SdkErrorAlert renders regions error message 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -322,7 +322,7 @@ exports[`SdkErrorAlert renders regions error message 1`] = ` { "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -335,7 +335,7 @@ exports[`SdkErrorAlert renders regions error message 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -397,7 +397,7 @@ exports[`SdkErrorAlert renders tokens error message 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -418,7 +418,7 @@ exports[`SdkErrorAlert renders tokens error message 1`] = ` { "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -431,7 +431,7 @@ exports[`SdkErrorAlert renders tokens error message 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -493,7 +493,7 @@ exports[`SdkErrorAlert renders user details error message 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -514,7 +514,7 @@ exports[`SdkErrorAlert renders user details error message 1`] = ` { "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -527,7 +527,7 @@ exports[`SdkErrorAlert renders user details error message 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/UI/Ramp/Deposit/components/TruncatedError/__snapshots__/TruncatedError.test.tsx.snap b/app/components/UI/Ramp/Deposit/components/TruncatedError/__snapshots__/TruncatedError.test.tsx.snap index f900cf89d802..05fcdd634357 100644 --- a/app/components/UI/Ramp/Deposit/components/TruncatedError/__snapshots__/TruncatedError.test.tsx.snap +++ b/app/components/UI/Ramp/Deposit/components/TruncatedError/__snapshots__/TruncatedError.test.tsx.snap @@ -58,7 +58,7 @@ exports[`TruncatedError Basic rendering renders correctly and matches snapshot 1 style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -130,7 +130,7 @@ exports[`TruncatedError Basic rendering renders with custom maxLines prop 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -202,7 +202,7 @@ exports[`TruncatedError Long error text renders "See more" button for long error style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -221,7 +221,7 @@ exports[`TruncatedError Long error text renders "See more" button for long error { "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -234,7 +234,7 @@ exports[`TruncatedError Long error text renders "See more" button for long error style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/UI/Ramp/components/MenuItem/__snapshots__/MenuItem.test.tsx.snap b/app/components/UI/Ramp/components/MenuItem/__snapshots__/MenuItem.test.tsx.snap index 5dfab8e74317..49cf22587583 100644 --- a/app/components/UI/Ramp/components/MenuItem/__snapshots__/MenuItem.test.tsx.snap +++ b/app/components/UI/Ramp/components/MenuItem/__snapshots__/MenuItem.test.tsx.snap @@ -75,7 +75,7 @@ exports[`MenuItem renders snapshot correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -89,7 +89,7 @@ exports[`MenuItem renders snapshot correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -179,7 +179,7 @@ exports[`MenuItem renders with different icon 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -193,7 +193,7 @@ exports[`MenuItem renders with different icon 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -283,7 +283,7 @@ exports[`MenuItem renders with empty description 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -373,7 +373,7 @@ exports[`MenuItem renders with title only 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Ramp/components/TokenNetworkFilterBar/__snapshots__/TokenNetworkFilterBar.test.tsx.snap b/app/components/UI/Ramp/components/TokenNetworkFilterBar/__snapshots__/TokenNetworkFilterBar.test.tsx.snap index d59491e9bde3..bd005916b892 100644 --- a/app/components/UI/Ramp/components/TokenNetworkFilterBar/__snapshots__/TokenNetworkFilterBar.test.tsx.snap +++ b/app/components/UI/Ramp/components/TokenNetworkFilterBar/__snapshots__/TokenNetworkFilterBar.test.tsx.snap @@ -10,12 +10,19 @@ exports[`TokenNetworkFilterBar renders correctly with all networks selected (emp "paddingHorizontal": 16, } } - handlerTag={-1} + handlerTag={2} handlerType="NativeViewGestureHandler" horizontal={true} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} showsHorizontalScrollIndicator={false} + waitFor={ + [ + { + "current": null, + }, + ] + } > - - @@ -242,7 +225,7 @@ exports[`TokenSelection Component displays empty state when no tokens match sear - - + + `; @@ -991,7 +991,7 @@ exports[`TokenSelection Component renders correctly and matches snapshot 1`] = ` - - @@ -1102,7 +1085,7 @@ exports[`TokenSelection Component renders correctly and matches snapshot 1`] = ` - - + + `; diff --git a/app/components/UI/ReviewModal/styles.ts b/app/components/UI/ReviewModal/styles.ts index 78f6b5b93322..326cda6b0088 100644 --- a/app/components/UI/ReviewModal/styles.ts +++ b/app/components/UI/ReviewModal/styles.ts @@ -1,5 +1,6 @@ /* eslint-disable import/prefer-default-export */ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../styles/common'; // TODO: Replace "any" with type // eslint-disable-next-line @typescript-eslint/no-explicit-any @@ -20,7 +21,7 @@ export const createStyles = (colors: any) => optionIcon: { fontSize: 24 }, optionLabel: { fontSize: 14, - fontFamily: 'Geist Regular', + ...fontStyles.normal, color: colors.primary.default, }, helpOption: { marginVertical: 12 }, @@ -29,14 +30,14 @@ export const createStyles = (colors: any) => questionLabel: { fontSize: 18, paddingHorizontal: 30, - fontFamily: 'Geist Bold', + ...fontStyles.bold, textAlign: 'center', color: colors.text.default, lineHeight: 26, }, description: { fontSize: 14, - fontFamily: 'Geist Regular', + ...fontStyles.normal, color: colors.text.alternative, textAlign: 'center', lineHeight: 20, diff --git a/app/components/UI/Rewards/components/Onboarding/OnboardingIntroStep.tsx b/app/components/UI/Rewards/components/Onboarding/OnboardingIntroStep.tsx index 3e88afcce09b..48c084ba5aa6 100644 --- a/app/components/UI/Rewards/components/Onboarding/OnboardingIntroStep.tsx +++ b/app/components/UI/Rewards/components/Onboarding/OnboardingIntroStep.tsx @@ -318,7 +318,7 @@ const OnboardingIntroStep: React.FC<{ tw.style('text-center text-white text-12 leading-1 pt-1'), // eslint-disable-next-line react-native/no-inline-styles { - fontFamily: Platform.OS === 'ios' ? 'MM Poly' : 'MM Poly Regular', + fontFamily: 'MMPoly-Regular', }, ]} > diff --git a/app/components/UI/Rewards/components/RewardPointsAnimation/RewardPointsAnimation.stories.tsx b/app/components/UI/Rewards/components/RewardPointsAnimation/RewardPointsAnimation.stories.tsx index be7163042293..45c47c4ae557 100644 --- a/app/components/UI/Rewards/components/RewardPointsAnimation/RewardPointsAnimation.stories.tsx +++ b/app/components/UI/Rewards/components/RewardPointsAnimation/RewardPointsAnimation.stories.tsx @@ -4,6 +4,7 @@ /* eslint-disable react-native/no-color-literals */ import React, { useState, useCallback, useEffect } from 'react'; import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; +import { fontStyles } from '../../../../../styles/common'; import RewardPointsAnimationComponent, { RewardAnimationState } from './index'; /** @@ -60,7 +61,7 @@ const styles = StyleSheet.create({ }, buttonText: { color: 'white', - fontWeight: 'bold', + ...fontStyles.bold, }, animationContainer: { padding: 20, diff --git a/app/components/UI/SearchTokenAutocomplete/__snapshots__/index.test.tsx.snap b/app/components/UI/SearchTokenAutocomplete/__snapshots__/index.test.tsx.snap index 366e072b39f6..21f355d28441 100644 --- a/app/components/UI/SearchTokenAutocomplete/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/SearchTokenAutocomplete/__snapshots__/index.test.tsx.snap @@ -392,7 +392,7 @@ exports[`SearchTokenAutocomplete renders correctly with selected chain 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", } } testID="input-search-asset" @@ -710,7 +710,7 @@ exports[`SearchTokenAutocomplete renders correctly with selected chain 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -724,7 +724,7 @@ exports[`SearchTokenAutocomplete renders correctly with selected chain 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -952,7 +952,7 @@ exports[`SearchTokenAutocomplete renders correctly with selected chain 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -966,7 +966,7 @@ exports[`SearchTokenAutocomplete renders correctly with selected chain 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1021,7 +1021,7 @@ exports[`SearchTokenAutocomplete renders correctly with selected chain 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/SeedphraseModal/__snapshots__/index.test.tsx.snap b/app/components/UI/SeedphraseModal/__snapshots__/index.test.tsx.snap index 1236e6134920..02b3bdfe4c66 100644 --- a/app/components/UI/SeedphraseModal/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/SeedphraseModal/__snapshots__/index.test.tsx.snap @@ -29,7 +29,7 @@ exports[`SeedphraseModal renders matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -51,7 +51,7 @@ exports[`SeedphraseModal renders matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -72,7 +72,7 @@ exports[`SeedphraseModal renders matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -102,7 +102,7 @@ exports[`SeedphraseModal renders matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 20, "letterSpacing": 0, "lineHeight": 24, @@ -117,7 +117,7 @@ exports[`SeedphraseModal renders matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -141,7 +141,7 @@ exports[`SeedphraseModal renders matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 20, "letterSpacing": 0, "lineHeight": 24, @@ -156,7 +156,7 @@ exports[`SeedphraseModal renders matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -180,7 +180,7 @@ exports[`SeedphraseModal renders matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 20, "letterSpacing": 0, "lineHeight": 24, @@ -195,7 +195,7 @@ exports[`SeedphraseModal renders matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -242,7 +242,7 @@ exports[`SeedphraseModal renders matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/SelectComponent/__snapshots__/index.test.tsx.snap b/app/components/UI/SelectComponent/__snapshots__/index.test.tsx.snap index 2f50f4323bcc..84e805b8e740 100644 --- a/app/components/UI/SelectComponent/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/SelectComponent/__snapshots__/index.test.tsx.snap @@ -32,7 +32,7 @@ exports[`SelectComponent should render correctly 1`] = ` "alignSelf": "flex-start", "color": "#121314", "flex": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "paddingBottom": 10, "paddingHorizontal": 15, diff --git a/app/components/UI/SelectOptionSheet/__snapshots__/OptionSheet.test.tsx.snap b/app/components/UI/SelectOptionSheet/__snapshots__/OptionSheet.test.tsx.snap index 06876d6ea509..d173ba5f1637 100644 --- a/app/components/UI/SelectOptionSheet/__snapshots__/OptionSheet.test.tsx.snap +++ b/app/components/UI/SelectOptionSheet/__snapshots__/OptionSheet.test.tsx.snap @@ -453,7 +453,7 @@ exports[`OptionSheet render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -507,7 +507,7 @@ exports[`OptionSheet render matches snapshot 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -535,7 +535,7 @@ exports[`OptionSheet render matches snapshot 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } diff --git a/app/components/UI/SelectOptionSheet/__snapshots__/SelectOptionSheet.test.tsx.snap b/app/components/UI/SelectOptionSheet/__snapshots__/SelectOptionSheet.test.tsx.snap index 3fc313152f95..9dff6b043e15 100644 --- a/app/components/UI/SelectOptionSheet/__snapshots__/SelectOptionSheet.test.tsx.snap +++ b/app/components/UI/SelectOptionSheet/__snapshots__/SelectOptionSheet.test.tsx.snap @@ -26,7 +26,7 @@ exports[`SelectOptionSheet render matches the snapshot 1`] = ` "alignSelf": "flex-start", "color": "#121314", "flex": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "paddingBottom": 10, "paddingHorizontal": 15, diff --git a/app/components/UI/SheetActionView/__snapshots__/SheetActionView.test.tsx.snap b/app/components/UI/SheetActionView/__snapshots__/SheetActionView.test.tsx.snap index e68e51e3fbac..105d2b89318c 100644 --- a/app/components/UI/SheetActionView/__snapshots__/SheetActionView.test.tsx.snap +++ b/app/components/UI/SheetActionView/__snapshots__/SheetActionView.test.tsx.snap @@ -39,7 +39,7 @@ exports[`SheetActionView should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -77,7 +77,7 @@ exports[`SheetActionView should render correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/SkipAccountSecurityModal/__snapshots__/index.test.tsx.snap b/app/components/UI/SkipAccountSecurityModal/__snapshots__/index.test.tsx.snap index 2563883bc51f..3c0a14b5fd81 100644 --- a/app/components/UI/SkipAccountSecurityModal/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/SkipAccountSecurityModal/__snapshots__/index.test.tsx.snap @@ -38,7 +38,7 @@ exports[`SkipAccountSecurityModal with empty route params render matches snapsho style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -96,7 +96,7 @@ exports[`SkipAccountSecurityModal with empty route params render matches snapsho style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -149,7 +149,7 @@ exports[`SkipAccountSecurityModal with empty route params render matches snapsho style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -190,7 +190,7 @@ exports[`SkipAccountSecurityModal with empty route params render matches snapsho style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -243,7 +243,7 @@ exports[`SkipAccountSecurityModal with route params render matches snapshot 1`] style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -301,7 +301,7 @@ exports[`SkipAccountSecurityModal with route params render matches snapshot 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -354,7 +354,7 @@ exports[`SkipAccountSecurityModal with route params render matches snapshot 1`] style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -395,7 +395,7 @@ exports[`SkipAccountSecurityModal with route params render matches snapshot 1`] style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/SliderButton/__snapshots__/index.test.tsx.snap b/app/components/UI/SliderButton/__snapshots__/index.test.tsx.snap index 64f27236474c..94f48a64a92d 100644 --- a/app/components/UI/SliderButton/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/SliderButton/__snapshots__/index.test.tsx.snap @@ -77,7 +77,7 @@ exports[`SliderButton should render correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, } } @@ -119,7 +119,7 @@ exports[`SliderButton should render correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, } } diff --git a/app/components/UI/SlippageSlider/__snapshots__/index.test.tsx.snap b/app/components/UI/SlippageSlider/__snapshots__/index.test.tsx.snap index cc991692b17d..4aa24f512b0f 100644 --- a/app/components/UI/SlippageSlider/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/SlippageSlider/__snapshots__/index.test.tsx.snap @@ -193,7 +193,7 @@ exports[`SlippageSlider should render correctly 1`] = ` { "bottom": 0, "color": "#ffffff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "left": 0, "paddingTop": 6, diff --git a/app/components/UI/SrpInputGrid/__snapshots__/index.test.tsx.snap b/app/components/UI/SrpInputGrid/__snapshots__/index.test.tsx.snap index d21fa24bec8f..195805ff9809 100644 --- a/app/components/UI/SrpInputGrid/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/SrpInputGrid/__snapshots__/index.test.tsx.snap @@ -112,7 +112,7 @@ exports[`SrpInputGrid renders with custom uniqueId 1`] = ` "borderWidth": 1, "color": "#686e7d", "display": "flex", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 66, @@ -205,7 +205,7 @@ exports[`SrpInputGrid renders with custom uniqueId 1`] = ` "borderWidth": 1, "color": "#686e7d", "display": "flex", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 66, @@ -235,7 +235,7 @@ exports[`SrpInputGrid renders with custom uniqueId 1`] = ` { "alignSelf": "flex-end", "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -362,7 +362,7 @@ exports[`SrpInputGrid renders with disabled state 1`] = ` "borderWidth": 1, "color": "#686e7d", "display": "flex", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 66, @@ -455,7 +455,7 @@ exports[`SrpInputGrid renders with disabled state 1`] = ` "borderWidth": 1, "color": "#686e7d", "display": "flex", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 66, @@ -485,7 +485,7 @@ exports[`SrpInputGrid renders with disabled state 1`] = ` { "alignSelf": "flex-end", "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -612,7 +612,7 @@ exports[`SrpInputGrid renders with empty seed phrase 1`] = ` "borderWidth": 1, "color": "#686e7d", "display": "flex", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 66, @@ -705,7 +705,7 @@ exports[`SrpInputGrid renders with empty seed phrase 1`] = ` "borderWidth": 1, "color": "#686e7d", "display": "flex", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 66, @@ -735,7 +735,7 @@ exports[`SrpInputGrid renders with empty seed phrase 1`] = ` { "alignSelf": "flex-end", "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -817,7 +817,7 @@ exports[`SrpInputGrid renders with multiple words 1`] = ` "color": "#121314", "flex": 0, "flexDirection": "row", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "height": 40, "justifyContent": "flex-start", @@ -848,7 +848,7 @@ exports[`SrpInputGrid renders with multiple words 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -897,7 +897,7 @@ exports[`SrpInputGrid renders with multiple words 1`] = ` "borderWidth": 1, "color": "#121314", "flex": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 24, @@ -946,7 +946,7 @@ exports[`SrpInputGrid renders with multiple words 1`] = ` "color": "#121314", "flex": 0, "flexDirection": "row", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "height": 40, "justifyContent": "flex-start", @@ -977,7 +977,7 @@ exports[`SrpInputGrid renders with multiple words 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1026,7 +1026,7 @@ exports[`SrpInputGrid renders with multiple words 1`] = ` "borderWidth": 1, "color": "#121314", "flex": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 24, @@ -1075,7 +1075,7 @@ exports[`SrpInputGrid renders with multiple words 1`] = ` "color": "#121314", "flex": 0, "flexDirection": "row", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "height": 40, "justifyContent": "flex-start", @@ -1106,7 +1106,7 @@ exports[`SrpInputGrid renders with multiple words 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1155,7 +1155,7 @@ exports[`SrpInputGrid renders with multiple words 1`] = ` "borderWidth": 1, "color": "#121314", "flex": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 24, @@ -1249,7 +1249,7 @@ exports[`SrpInputGrid renders with multiple words 1`] = ` "borderWidth": 1, "color": "#686e7d", "display": "flex", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 66, @@ -1279,7 +1279,7 @@ exports[`SrpInputGrid renders with multiple words 1`] = ` { "alignSelf": "flex-end", "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Stake/Views/StakeConfirmationView/__snapshots__/StakeConfirmationView.test.tsx.snap b/app/components/UI/Stake/Views/StakeConfirmationView/__snapshots__/StakeConfirmationView.test.tsx.snap index 91604707963c..44b027ddd0af 100644 --- a/app/components/UI/Stake/Views/StakeConfirmationView/__snapshots__/StakeConfirmationView.test.tsx.snap +++ b/app/components/UI/Stake/Views/StakeConfirmationView/__snapshots__/StakeConfirmationView.test.tsx.snap @@ -44,7 +44,7 @@ exports[`StakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -60,7 +60,7 @@ exports[`StakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -141,7 +141,7 @@ exports[`StakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -229,7 +229,7 @@ exports[`StakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -337,7 +337,7 @@ exports[`StakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -404,7 +404,7 @@ exports[`StakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -478,7 +478,7 @@ exports[`StakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -555,7 +555,7 @@ exports[`StakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -614,7 +614,7 @@ exports[`StakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -665,7 +665,7 @@ exports[`StakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -679,7 +679,7 @@ exports[`StakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -738,7 +738,7 @@ exports[`StakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -815,7 +815,7 @@ exports[`StakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -888,7 +888,7 @@ exports[`StakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -965,7 +965,7 @@ exports[`StakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1011,7 +1011,7 @@ exports[`StakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1035,7 +1035,7 @@ exports[`StakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1089,7 +1089,7 @@ exports[`StakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1131,7 +1131,7 @@ exports[`StakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Stake/Views/StakeEarningsHistoryView/__snapshots__/StakeEarningsHistoryView.test.tsx.snap b/app/components/UI/Stake/Views/StakeEarningsHistoryView/__snapshots__/StakeEarningsHistoryView.test.tsx.snap index 0acd1f2a0fc4..d8e39a540f99 100644 --- a/app/components/UI/Stake/Views/StakeEarningsHistoryView/__snapshots__/StakeEarningsHistoryView.test.tsx.snap +++ b/app/components/UI/Stake/Views/StakeEarningsHistoryView/__snapshots__/StakeEarningsHistoryView.test.tsx.snap @@ -58,7 +58,7 @@ exports[`StakeEarningsHistoryView renders correctly and matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 3, "lineHeight": 24, @@ -71,7 +71,7 @@ exports[`StakeEarningsHistoryView renders correctly and matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -111,7 +111,7 @@ exports[`StakeEarningsHistoryView renders correctly and matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 3, "lineHeight": 24, @@ -124,7 +124,7 @@ exports[`StakeEarningsHistoryView renders correctly and matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -164,7 +164,7 @@ exports[`StakeEarningsHistoryView renders correctly and matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 3, "lineHeight": 24, @@ -177,7 +177,7 @@ exports[`StakeEarningsHistoryView renders correctly and matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -211,7 +211,7 @@ exports[`StakeEarningsHistoryView renders correctly and matches snapshot 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -227,7 +227,7 @@ exports[`StakeEarningsHistoryView renders correctly and matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -832,7 +832,7 @@ exports[`StakeEarningsHistoryView renders correctly and matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -856,7 +856,7 @@ exports[`StakeEarningsHistoryView renders correctly and matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -895,7 +895,7 @@ exports[`StakeEarningsHistoryView renders correctly and matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -928,7 +928,7 @@ exports[`StakeEarningsHistoryView renders correctly and matches snapshot 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -948,7 +948,7 @@ exports[`StakeEarningsHistoryView renders correctly and matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/UI/Stake/Views/UnstakeConfirmationView/__snapshots__/UnstakeConfirmationView.test.tsx.snap b/app/components/UI/Stake/Views/UnstakeConfirmationView/__snapshots__/UnstakeConfirmationView.test.tsx.snap index 30c418692ebb..57c43b991cbf 100644 --- a/app/components/UI/Stake/Views/UnstakeConfirmationView/__snapshots__/UnstakeConfirmationView.test.tsx.snap +++ b/app/components/UI/Stake/Views/UnstakeConfirmationView/__snapshots__/UnstakeConfirmationView.test.tsx.snap @@ -38,7 +38,7 @@ exports[`UnstakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -54,7 +54,7 @@ exports[`UnstakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -131,7 +131,7 @@ exports[`UnstakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -208,7 +208,7 @@ exports[`UnstakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -285,7 +285,7 @@ exports[`UnstakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -373,7 +373,7 @@ exports[`UnstakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -481,7 +481,7 @@ exports[`UnstakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -548,7 +548,7 @@ exports[`UnstakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -595,7 +595,7 @@ exports[`UnstakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -619,7 +619,7 @@ exports[`UnstakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -673,7 +673,7 @@ exports[`UnstakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -715,7 +715,7 @@ exports[`UnstakeConfirmationView render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Stake/components/GasImpactModal/__snapshots__/GasImpactModal.test.tsx.snap b/app/components/UI/Stake/components/GasImpactModal/__snapshots__/GasImpactModal.test.tsx.snap index 3fb2d7a677bd..7d6809d5d604 100644 --- a/app/components/UI/Stake/components/GasImpactModal/__snapshots__/GasImpactModal.test.tsx.snap +++ b/app/components/UI/Stake/components/GasImpactModal/__snapshots__/GasImpactModal.test.tsx.snap @@ -173,7 +173,7 @@ exports[`GasImpactModal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -233,7 +233,7 @@ exports[`GasImpactModal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -285,7 +285,7 @@ exports[`GasImpactModal render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -325,7 +325,7 @@ exports[`GasImpactModal render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Stake/components/PoolStakingLearnMoreModal/InteractiveTimespanChart/ChartTimespanButtonGroup/__snapshots__/ChartTimespanButtonGroup.test.tsx.snap b/app/components/UI/Stake/components/PoolStakingLearnMoreModal/InteractiveTimespanChart/ChartTimespanButtonGroup/__snapshots__/ChartTimespanButtonGroup.test.tsx.snap index 36cec379363e..027e553a8bd9 100644 --- a/app/components/UI/Stake/components/PoolStakingLearnMoreModal/InteractiveTimespanChart/ChartTimespanButtonGroup/__snapshots__/ChartTimespanButtonGroup.test.tsx.snap +++ b/app/components/UI/Stake/components/PoolStakingLearnMoreModal/InteractiveTimespanChart/ChartTimespanButtonGroup/__snapshots__/ChartTimespanButtonGroup.test.tsx.snap @@ -32,7 +32,7 @@ exports[`ChartTimespanButtonGroup render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -61,7 +61,7 @@ exports[`ChartTimespanButtonGroup render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -90,7 +90,7 @@ exports[`ChartTimespanButtonGroup render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -119,7 +119,7 @@ exports[`ChartTimespanButtonGroup render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Stake/components/PoolStakingLearnMoreModal/InteractiveTimespanChart/GraphTooltip/__snapshots__/GraphTooltip.test.tsx.snap b/app/components/UI/Stake/components/PoolStakingLearnMoreModal/InteractiveTimespanChart/GraphTooltip/__snapshots__/GraphTooltip.test.tsx.snap index 2f24404b2379..41c2f66b777b 100644 --- a/app/components/UI/Stake/components/PoolStakingLearnMoreModal/InteractiveTimespanChart/GraphTooltip/__snapshots__/GraphTooltip.test.tsx.snap +++ b/app/components/UI/Stake/components/PoolStakingLearnMoreModal/InteractiveTimespanChart/GraphTooltip/__snapshots__/GraphTooltip.test.tsx.snap @@ -15,7 +15,7 @@ exports[`GraphTooltip render matches snapshot 1`] = ` style={ { "color": "blue", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -29,7 +29,7 @@ exports[`GraphTooltip render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Stake/components/PoolStakingLearnMoreModal/InteractiveTimespanChart/__snapshots__/InteractiveTimespanChart.test.tsx.snap b/app/components/UI/Stake/components/PoolStakingLearnMoreModal/InteractiveTimespanChart/__snapshots__/InteractiveTimespanChart.test.tsx.snap index f66229d99ad9..f20beff1b5cd 100644 --- a/app/components/UI/Stake/components/PoolStakingLearnMoreModal/InteractiveTimespanChart/__snapshots__/InteractiveTimespanChart.test.tsx.snap +++ b/app/components/UI/Stake/components/PoolStakingLearnMoreModal/InteractiveTimespanChart/__snapshots__/InteractiveTimespanChart.test.tsx.snap @@ -35,7 +35,7 @@ exports[`InteractiveTimespanChart render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -64,7 +64,7 @@ exports[`InteractiveTimespanChart render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -93,7 +93,7 @@ exports[`InteractiveTimespanChart render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -118,7 +118,7 @@ exports[`InteractiveTimespanChart render matches snapshot 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -132,7 +132,7 @@ exports[`InteractiveTimespanChart render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -302,7 +302,7 @@ exports[`InteractiveTimespanChart renders no title or subtitle when defaultTitle style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -331,7 +331,7 @@ exports[`InteractiveTimespanChart renders no title or subtitle when defaultTitle style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -360,7 +360,7 @@ exports[`InteractiveTimespanChart renders no title or subtitle when defaultTitle style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -385,7 +385,7 @@ exports[`InteractiveTimespanChart renders no title or subtitle when defaultTitle style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -397,7 +397,7 @@ exports[`InteractiveTimespanChart renders no title or subtitle when defaultTitle style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -565,7 +565,7 @@ exports[`InteractiveTimespanChart renders only the subtitle when title props are style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -594,7 +594,7 @@ exports[`InteractiveTimespanChart renders only the subtitle when title props are style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -623,7 +623,7 @@ exports[`InteractiveTimespanChart renders only the subtitle when title props are style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -648,7 +648,7 @@ exports[`InteractiveTimespanChart renders only the subtitle when title props are style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -660,7 +660,7 @@ exports[`InteractiveTimespanChart renders only the subtitle when title props are style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -830,7 +830,7 @@ exports[`InteractiveTimespanChart renders only the title when subtitle props are style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -859,7 +859,7 @@ exports[`InteractiveTimespanChart renders only the title when subtitle props are style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -888,7 +888,7 @@ exports[`InteractiveTimespanChart renders only the title when subtitle props are style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -913,7 +913,7 @@ exports[`InteractiveTimespanChart renders only the title when subtitle props are style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -927,7 +927,7 @@ exports[`InteractiveTimespanChart renders only the title when subtitle props are style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1095,7 +1095,7 @@ exports[`InteractiveTimespanChart supports dataPoints as number[] 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1124,7 +1124,7 @@ exports[`InteractiveTimespanChart supports dataPoints as number[] 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1153,7 +1153,7 @@ exports[`InteractiveTimespanChart supports dataPoints as number[] 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1178,7 +1178,7 @@ exports[`InteractiveTimespanChart supports dataPoints as number[] 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -1192,7 +1192,7 @@ exports[`InteractiveTimespanChart supports dataPoints as number[] 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1362,7 +1362,7 @@ exports[`InteractiveTimespanChart supports dataPoints as object[] 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1391,7 +1391,7 @@ exports[`InteractiveTimespanChart supports dataPoints as object[] 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1420,7 +1420,7 @@ exports[`InteractiveTimespanChart supports dataPoints as object[] 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1445,7 +1445,7 @@ exports[`InteractiveTimespanChart supports dataPoints as object[] 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -1459,7 +1459,7 @@ exports[`InteractiveTimespanChart supports dataPoints as object[] 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Stake/components/PoolStakingLearnMoreModal/__snapshots__/PoolStakingLearnMoreModal.test.tsx.snap b/app/components/UI/Stake/components/PoolStakingLearnMoreModal/__snapshots__/PoolStakingLearnMoreModal.test.tsx.snap index 19f7713624cd..900fea4d5968 100644 --- a/app/components/UI/Stake/components/PoolStakingLearnMoreModal/__snapshots__/PoolStakingLearnMoreModal.test.tsx.snap +++ b/app/components/UI/Stake/components/PoolStakingLearnMoreModal/__snapshots__/PoolStakingLearnMoreModal.test.tsx.snap @@ -150,7 +150,7 @@ exports[`PoolStakingLearnMoreModal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -239,7 +239,7 @@ exports[`PoolStakingLearnMoreModal render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -268,7 +268,7 @@ exports[`PoolStakingLearnMoreModal render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -297,7 +297,7 @@ exports[`PoolStakingLearnMoreModal render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -326,7 +326,7 @@ exports[`PoolStakingLearnMoreModal render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -351,7 +351,7 @@ exports[`PoolStakingLearnMoreModal render matches snapshot 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -365,7 +365,7 @@ exports[`PoolStakingLearnMoreModal render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -511,7 +511,7 @@ exports[`PoolStakingLearnMoreModal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -525,7 +525,7 @@ exports[`PoolStakingLearnMoreModal render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -540,7 +540,7 @@ exports[`PoolStakingLearnMoreModal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -554,7 +554,7 @@ exports[`PoolStakingLearnMoreModal render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -569,7 +569,7 @@ exports[`PoolStakingLearnMoreModal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -583,7 +583,7 @@ exports[`PoolStakingLearnMoreModal render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -598,7 +598,7 @@ exports[`PoolStakingLearnMoreModal render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular Italic", + "fontFamily": "Geist-Regular-Italic", "fontSize": 14, "fontStyle": "italic", "letterSpacing": 0, @@ -652,7 +652,7 @@ exports[`PoolStakingLearnMoreModal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -692,7 +692,7 @@ exports[`PoolStakingLearnMoreModal render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Stake/components/StakingBalance/StakingBanners/ClaimBanner/__snapshots__/ClaimBanner.test.tsx.snap b/app/components/UI/Stake/components/StakingBalance/StakingBanners/ClaimBanner/__snapshots__/ClaimBanner.test.tsx.snap index e6bd280c1f30..ef0b9341cd7e 100644 --- a/app/components/UI/Stake/components/StakingBalance/StakingBanners/ClaimBanner/__snapshots__/ClaimBanner.test.tsx.snap +++ b/app/components/UI/Stake/components/StakingBalance/StakingBanners/ClaimBanner/__snapshots__/ClaimBanner.test.tsx.snap @@ -49,7 +49,7 @@ exports[`ClaimBanner render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -71,7 +71,7 @@ exports[`ClaimBanner render matches snapshot 1`] = ` "alignSelf": "flex-start", "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -85,7 +85,7 @@ exports[`ClaimBanner render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Stake/components/StakingBalance/StakingCta/__snapshots__/StakingCta.test.tsx.snap b/app/components/UI/Stake/components/StakingBalance/StakingCta/__snapshots__/StakingCta.test.tsx.snap index 23d4c4d69c03..9bc8f91881de 100644 --- a/app/components/UI/Stake/components/StakingBalance/StakingCta/__snapshots__/StakingCta.test.tsx.snap +++ b/app/components/UI/Stake/components/StakingBalance/StakingCta/__snapshots__/StakingCta.test.tsx.snap @@ -17,7 +17,7 @@ exports[`StakingCta render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -29,7 +29,7 @@ exports[`StakingCta render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -44,7 +44,7 @@ exports[`StakingCta render matches snapshot 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -58,7 +58,7 @@ exports[`StakingCta render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -73,7 +73,7 @@ exports[`StakingCta render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Stake/components/StakingBalance/__snapshots__/StakingBalance.test.tsx.snap b/app/components/UI/Stake/components/StakingBalance/__snapshots__/StakingBalance.test.tsx.snap index 9564cf921bf1..8fb63b1b0c2b 100644 --- a/app/components/UI/Stake/components/StakingBalance/__snapshots__/StakingBalance.test.tsx.snap +++ b/app/components/UI/Stake/components/StakingBalance/__snapshots__/StakingBalance.test.tsx.snap @@ -184,7 +184,7 @@ exports[`StakingBalance render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -199,7 +199,7 @@ exports[`StakingBalance render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -212,7 +212,7 @@ exports[`StakingBalance render matches snapshot 1`] = ` style={ { "color": "#ca3542", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -292,7 +292,7 @@ exports[`StakingBalance render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -353,7 +353,7 @@ exports[`StakingBalance render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -375,7 +375,7 @@ exports[`StakingBalance render matches snapshot 1`] = ` "alignSelf": "flex-start", "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -389,7 +389,7 @@ exports[`StakingBalance render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -444,7 +444,7 @@ exports[`StakingBalance render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -484,7 +484,7 @@ exports[`StakingBalance render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -516,7 +516,7 @@ exports[`StakingBalance render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -548,7 +548,7 @@ exports[`StakingBalance render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -597,7 +597,7 @@ exports[`StakingBalance render matches snapshot 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -630,7 +630,7 @@ exports[`StakingBalance render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -652,7 +652,7 @@ exports[`StakingBalance render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -666,7 +666,7 @@ exports[`StakingBalance render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -699,7 +699,7 @@ exports[`StakingBalance render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -721,7 +721,7 @@ exports[`StakingBalance render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -735,7 +735,7 @@ exports[`StakingBalance render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -776,7 +776,7 @@ exports[`StakingBalance render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -977,7 +977,7 @@ exports[`StakingBalance should match the snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -992,7 +992,7 @@ exports[`StakingBalance should match the snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1005,7 +1005,7 @@ exports[`StakingBalance should match the snapshot 1`] = ` style={ { "color": "#ca3542", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1085,7 +1085,7 @@ exports[`StakingBalance should match the snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1146,7 +1146,7 @@ exports[`StakingBalance should match the snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1168,7 +1168,7 @@ exports[`StakingBalance should match the snapshot 1`] = ` "alignSelf": "flex-start", "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1182,7 +1182,7 @@ exports[`StakingBalance should match the snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1237,7 +1237,7 @@ exports[`StakingBalance should match the snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1277,7 +1277,7 @@ exports[`StakingBalance should match the snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1309,7 +1309,7 @@ exports[`StakingBalance should match the snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1341,7 +1341,7 @@ exports[`StakingBalance should match the snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1390,7 +1390,7 @@ exports[`StakingBalance should match the snapshot 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1423,7 +1423,7 @@ exports[`StakingBalance should match the snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1445,7 +1445,7 @@ exports[`StakingBalance should match the snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1459,7 +1459,7 @@ exports[`StakingBalance should match the snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1492,7 +1492,7 @@ exports[`StakingBalance should match the snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1514,7 +1514,7 @@ exports[`StakingBalance should match the snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1528,7 +1528,7 @@ exports[`StakingBalance should match the snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1569,7 +1569,7 @@ exports[`StakingBalance should match the snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Stake/components/StakingConfirmation/AccountCard/__snapshots__/AccountCard.test.tsx.snap b/app/components/UI/Stake/components/StakingConfirmation/AccountCard/__snapshots__/AccountCard.test.tsx.snap index 485f51b7da13..3bdd37114b45 100644 --- a/app/components/UI/Stake/components/StakingConfirmation/AccountCard/__snapshots__/AccountCard.test.tsx.snap +++ b/app/components/UI/Stake/components/StakingConfirmation/AccountCard/__snapshots__/AccountCard.test.tsx.snap @@ -63,7 +63,7 @@ exports[`AccountCard render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -162,7 +162,7 @@ exports[`AccountCard render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -223,7 +223,7 @@ exports[`AccountCard render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -322,7 +322,7 @@ exports[`AccountCard render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -402,7 +402,7 @@ exports[`AccountCard render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -480,7 +480,7 @@ exports[`AccountCard render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Stake/components/StakingConfirmation/AccountTag/__snapshots__/AccountTag.test.tsx.snap b/app/components/UI/Stake/components/StakingConfirmation/AccountTag/__snapshots__/AccountTag.test.tsx.snap index 5ed6a0504b5d..1817c86a36cf 100644 --- a/app/components/UI/Stake/components/StakingConfirmation/AccountTag/__snapshots__/AccountTag.test.tsx.snap +++ b/app/components/UI/Stake/components/StakingConfirmation/AccountTag/__snapshots__/AccountTag.test.tsx.snap @@ -62,7 +62,7 @@ exports[`AccountTag render matches snapshot when name prop is defined 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -138,7 +138,7 @@ exports[`AccountTag render matches snapshot when name prop isn't defined 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Stake/components/StakingConfirmation/ConfirmationFooter/FooterButtonGroup/__snapshots__/FooterButtonGroup.test.tsx.snap b/app/components/UI/Stake/components/StakingConfirmation/ConfirmationFooter/FooterButtonGroup/__snapshots__/FooterButtonGroup.test.tsx.snap index bd05c12eb75c..cd635d973c72 100644 --- a/app/components/UI/Stake/components/StakingConfirmation/ConfirmationFooter/FooterButtonGroup/__snapshots__/FooterButtonGroup.test.tsx.snap +++ b/app/components/UI/Stake/components/StakingConfirmation/ConfirmationFooter/FooterButtonGroup/__snapshots__/FooterButtonGroup.test.tsx.snap @@ -44,7 +44,7 @@ exports[`FooterButtonGroup attempts stake transaction on continue click 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -133,7 +133,7 @@ exports[`FooterButtonGroup attempts unstake transaction on continue click 1`] = style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -222,7 +222,7 @@ exports[`FooterButtonGroup navigates to Asset page when cancel is pressed 1`] = style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -264,7 +264,7 @@ exports[`FooterButtonGroup navigates to Asset page when cancel is pressed 1`] = style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -321,7 +321,7 @@ exports[`FooterButtonGroup render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -363,7 +363,7 @@ exports[`FooterButtonGroup render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Stake/components/StakingConfirmation/ConfirmationFooter/LegalLinks/__snapshots__/LegalLinks.test.tsx.snap b/app/components/UI/Stake/components/StakingConfirmation/ConfirmationFooter/LegalLinks/__snapshots__/LegalLinks.test.tsx.snap index 1ca7c88bb5f6..8ab58d73d673 100644 --- a/app/components/UI/Stake/components/StakingConfirmation/ConfirmationFooter/LegalLinks/__snapshots__/LegalLinks.test.tsx.snap +++ b/app/components/UI/Stake/components/StakingConfirmation/ConfirmationFooter/LegalLinks/__snapshots__/LegalLinks.test.tsx.snap @@ -23,7 +23,7 @@ exports[`FooterLegalLinks navigates to risk disclosure web page 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -47,7 +47,7 @@ exports[`FooterLegalLinks navigates to risk disclosure web page 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -83,7 +83,7 @@ exports[`FooterLegalLinks navigates to terms of use web page 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -107,7 +107,7 @@ exports[`FooterLegalLinks navigates to terms of use web page 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -143,7 +143,7 @@ exports[`FooterLegalLinks render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -167,7 +167,7 @@ exports[`FooterLegalLinks render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Stake/components/StakingConfirmation/ConfirmationFooter/__snapshots__/ConfirmationFooter.test.tsx.snap b/app/components/UI/Stake/components/StakingConfirmation/ConfirmationFooter/__snapshots__/ConfirmationFooter.test.tsx.snap index 3156260d65f9..233448754843 100644 --- a/app/components/UI/Stake/components/StakingConfirmation/ConfirmationFooter/__snapshots__/ConfirmationFooter.test.tsx.snap +++ b/app/components/UI/Stake/components/StakingConfirmation/ConfirmationFooter/__snapshots__/ConfirmationFooter.test.tsx.snap @@ -30,7 +30,7 @@ exports[`ConfirmationFooter render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -54,7 +54,7 @@ exports[`ConfirmationFooter render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -108,7 +108,7 @@ exports[`ConfirmationFooter render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -150,7 +150,7 @@ exports[`ConfirmationFooter render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Stake/components/StakingConfirmation/ContractTag/__snapshots__/ContractTag.test.tsx.snap b/app/components/UI/Stake/components/StakingConfirmation/ContractTag/__snapshots__/ContractTag.test.tsx.snap index 51a86a3f5b67..4bafae1aa3c3 100644 --- a/app/components/UI/Stake/components/StakingConfirmation/ContractTag/__snapshots__/ContractTag.test.tsx.snap +++ b/app/components/UI/Stake/components/StakingConfirmation/ContractTag/__snapshots__/ContractTag.test.tsx.snap @@ -62,7 +62,7 @@ exports[`ContractTag render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Stake/components/StakingConfirmation/RewardsCard/__snapshots__/RewardsCard.test.tsx.snap b/app/components/UI/Stake/components/StakingConfirmation/RewardsCard/__snapshots__/RewardsCard.test.tsx.snap index 455d2a6e6975..d5c36f652419 100644 --- a/app/components/UI/Stake/components/StakingConfirmation/RewardsCard/__snapshots__/RewardsCard.test.tsx.snap +++ b/app/components/UI/Stake/components/StakingConfirmation/RewardsCard/__snapshots__/RewardsCard.test.tsx.snap @@ -59,7 +59,7 @@ exports[`RewardsCard render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -136,7 +136,7 @@ exports[`RewardsCard render matches snapshot 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -195,7 +195,7 @@ exports[`RewardsCard render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -246,7 +246,7 @@ exports[`RewardsCard render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -260,7 +260,7 @@ exports[`RewardsCard render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -319,7 +319,7 @@ exports[`RewardsCard render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -396,7 +396,7 @@ exports[`RewardsCard render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -472,7 +472,7 @@ exports[`RewardsCard reward frequency tooltip displayed when pressed 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -549,7 +549,7 @@ exports[`RewardsCard reward frequency tooltip displayed when pressed 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -608,7 +608,7 @@ exports[`RewardsCard reward frequency tooltip displayed when pressed 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -659,7 +659,7 @@ exports[`RewardsCard reward frequency tooltip displayed when pressed 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -673,7 +673,7 @@ exports[`RewardsCard reward frequency tooltip displayed when pressed 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -732,7 +732,7 @@ exports[`RewardsCard reward frequency tooltip displayed when pressed 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -809,7 +809,7 @@ exports[`RewardsCard reward frequency tooltip displayed when pressed 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -885,7 +885,7 @@ exports[`RewardsCard reward rate tooltip displayed when pressed 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -962,7 +962,7 @@ exports[`RewardsCard reward rate tooltip displayed when pressed 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1021,7 +1021,7 @@ exports[`RewardsCard reward rate tooltip displayed when pressed 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1072,7 +1072,7 @@ exports[`RewardsCard reward rate tooltip displayed when pressed 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1086,7 +1086,7 @@ exports[`RewardsCard reward rate tooltip displayed when pressed 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1145,7 +1145,7 @@ exports[`RewardsCard reward rate tooltip displayed when pressed 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1222,7 +1222,7 @@ exports[`RewardsCard reward rate tooltip displayed when pressed 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Stake/components/StakingConfirmation/TokenValueStack/__snapshots__/TokenValueStack.test.tsx.snap b/app/components/UI/Stake/components/StakingConfirmation/TokenValueStack/__snapshots__/TokenValueStack.test.tsx.snap index f6556f9d814f..94c3da59b3b6 100644 --- a/app/components/UI/Stake/components/StakingConfirmation/TokenValueStack/__snapshots__/TokenValueStack.test.tsx.snap +++ b/app/components/UI/Stake/components/StakingConfirmation/TokenValueStack/__snapshots__/TokenValueStack.test.tsx.snap @@ -174,7 +174,7 @@ exports[`TokenValueStack render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -190,7 +190,7 @@ exports[`TokenValueStack render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Stake/components/StakingConfirmation/UnstakeTimeCard/__snapshots__/UnstakeTimeCard.test.tsx.snap b/app/components/UI/Stake/components/StakingConfirmation/UnstakeTimeCard/__snapshots__/UnstakeTimeCard.test.tsx.snap index fb5db8d7515e..23e48cbcc41f 100644 --- a/app/components/UI/Stake/components/StakingConfirmation/UnstakeTimeCard/__snapshots__/UnstakeTimeCard.test.tsx.snap +++ b/app/components/UI/Stake/components/StakingConfirmation/UnstakeTimeCard/__snapshots__/UnstakeTimeCard.test.tsx.snap @@ -59,7 +59,7 @@ exports[`UnstakingTimeCard render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -136,7 +136,7 @@ exports[`UnstakingTimeCard render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Stake/components/StakingConfirmation/YouReceiveCard/__snapshots__/YouReceiveCard.test.tsx.snap b/app/components/UI/Stake/components/StakingConfirmation/YouReceiveCard/__snapshots__/YouReceiveCard.test.tsx.snap index 062b657ad36b..2be654a7245c 100644 --- a/app/components/UI/Stake/components/StakingConfirmation/YouReceiveCard/__snapshots__/YouReceiveCard.test.tsx.snap +++ b/app/components/UI/Stake/components/StakingConfirmation/YouReceiveCard/__snapshots__/YouReceiveCard.test.tsx.snap @@ -27,7 +27,7 @@ exports[`YouReceiveCard render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -51,7 +51,7 @@ exports[`YouReceiveCard render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -108,7 +108,7 @@ exports[`YouReceiveCard render matches snapshot 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -186,7 +186,7 @@ exports[`YouReceiveCard render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -203,7 +203,7 @@ exports[`YouReceiveCard render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/UI/Stake/components/StakingEarnings/__snapshots__/StakingEarnings.test.tsx.snap b/app/components/UI/Stake/components/StakingEarnings/__snapshots__/StakingEarnings.test.tsx.snap index ae7a6a916794..2081e0b1d2b8 100644 --- a/app/components/UI/Stake/components/StakingEarnings/__snapshots__/StakingEarnings.test.tsx.snap +++ b/app/components/UI/Stake/components/StakingEarnings/__snapshots__/StakingEarnings.test.tsx.snap @@ -13,7 +13,7 @@ exports[`Staking Earnings displays pooled-staking maintenance banner when featur style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -72,7 +72,7 @@ exports[`Staking Earnings displays pooled-staking maintenance banner when featur style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -104,7 +104,7 @@ exports[`Staking Earnings displays pooled-staking maintenance banner when featur style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -153,7 +153,7 @@ exports[`Staking Earnings displays pooled-staking maintenance banner when featur style={ { "color": "#457a39", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -186,7 +186,7 @@ exports[`Staking Earnings displays pooled-staking maintenance banner when featur style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -208,7 +208,7 @@ exports[`Staking Earnings displays pooled-staking maintenance banner when featur style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -222,7 +222,7 @@ exports[`Staking Earnings displays pooled-staking maintenance banner when featur style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -255,7 +255,7 @@ exports[`Staking Earnings displays pooled-staking maintenance banner when featur style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -277,7 +277,7 @@ exports[`Staking Earnings displays pooled-staking maintenance banner when featur style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -291,7 +291,7 @@ exports[`Staking Earnings displays pooled-staking maintenance banner when featur style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -332,7 +332,7 @@ exports[`Staking Earnings displays pooled-staking maintenance banner when featur style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -360,7 +360,7 @@ exports[`Staking Earnings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -392,7 +392,7 @@ exports[`Staking Earnings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -441,7 +441,7 @@ exports[`Staking Earnings should render correctly 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -474,7 +474,7 @@ exports[`Staking Earnings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -496,7 +496,7 @@ exports[`Staking Earnings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -510,7 +510,7 @@ exports[`Staking Earnings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -543,7 +543,7 @@ exports[`Staking Earnings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -565,7 +565,7 @@ exports[`Staking Earnings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -579,7 +579,7 @@ exports[`Staking Earnings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -620,7 +620,7 @@ exports[`Staking Earnings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Stake/components/UpsellBanner/__snapshots__/UpsellBanner.test.tsx.snap b/app/components/UI/Stake/components/UpsellBanner/__snapshots__/UpsellBanner.test.tsx.snap index 5b7b609e0be8..7b42fa3b1b4a 100644 --- a/app/components/UI/Stake/components/UpsellBanner/__snapshots__/UpsellBanner.test.tsx.snap +++ b/app/components/UI/Stake/components/UpsellBanner/__snapshots__/UpsellBanner.test.tsx.snap @@ -26,7 +26,7 @@ exports[`UpsellBanner UpsellBannerBody variant render matches screenshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -40,7 +40,7 @@ exports[`UpsellBanner UpsellBannerBody variant render matches screenshot 1`] = ` style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -63,7 +63,7 @@ exports[`UpsellBanner UpsellBannerBody variant render matches screenshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -126,7 +126,7 @@ exports[`UpsellBanner UpsellBannerBody variant render matches screenshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -158,7 +158,7 @@ exports[`UpsellBanner UpsellBannerHeader variant render matches screenshot 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -172,7 +172,7 @@ exports[`UpsellBanner UpsellBannerHeader variant render matches screenshot 1`] = style={ { "color": "#457a39", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -186,7 +186,7 @@ exports[`UpsellBanner UpsellBannerHeader variant render matches screenshot 1`] = style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -223,7 +223,7 @@ exports[`UpsellBanner UpsellBannerHeader variant render matches screenshot 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Stake/sdk/__snapshots__/stakeSdkProvider.test.tsx.snap b/app/components/UI/Stake/sdk/__snapshots__/stakeSdkProvider.test.tsx.snap index 3dfd43892b7a..658393359ba4 100644 --- a/app/components/UI/Stake/sdk/__snapshots__/stakeSdkProvider.test.tsx.snap +++ b/app/components/UI/Stake/sdk/__snapshots__/stakeSdkProvider.test.tsx.snap @@ -7,7 +7,7 @@ exports[`Stake Modals With Stake Sdk Provider renders stake screen with stake sd style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/StyledButton/__snapshots__/index.test.tsx.snap b/app/components/UI/StyledButton/__snapshots__/index.test.tsx.snap index d7208d41d3b1..953ac51c42a8 100644 --- a/app/components/UI/StyledButton/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/StyledButton/__snapshots__/index.test.tsx.snap @@ -279,7 +279,7 @@ exports[`StyledButton should render correctly on iOS the button with type cancel style={ [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -314,7 +314,7 @@ exports[`StyledButton should render correctly on iOS the button with type confir style={ [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -350,7 +350,7 @@ exports[`StyledButton should render correctly on iOS the button with type danger style={ [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -386,7 +386,7 @@ exports[`StyledButton should render correctly on iOS the button with type info 1 style={ [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -422,7 +422,7 @@ exports[`StyledButton should render correctly on iOS the button with type invers style={ [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -458,7 +458,7 @@ exports[`StyledButton should render correctly on iOS the button with type normal style={ [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -493,13 +493,13 @@ exports[`StyledButton should render correctly on iOS the button with type onOver style={ [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, { "color": "#ffffff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, }, undefined, @@ -530,7 +530,7 @@ exports[`StyledButton should render correctly on iOS the button with type orange style={ [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -566,7 +566,7 @@ exports[`StyledButton should render correctly on iOS the button with type second style={ [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -602,13 +602,13 @@ exports[`StyledButton should render correctly on iOS the button with type transp style={ [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, { "color": "#ffffff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, ] diff --git a/app/components/UI/Swaps/__snapshots__/QuotesView.test.ts.snap b/app/components/UI/Swaps/__snapshots__/QuotesView.test.ts.snap index 4ddb641e3985..b5cb303d8a15 100644 --- a/app/components/UI/Swaps/__snapshots__/QuotesView.test.ts.snap +++ b/app/components/UI/Swaps/__snapshots__/QuotesView.test.ts.snap @@ -129,7 +129,7 @@ exports[`QuotesView should render quote screen 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -164,7 +164,7 @@ exports[`QuotesView should render quote screen 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -187,7 +187,7 @@ exports[`QuotesView should render quote screen 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -227,7 +227,7 @@ exports[`QuotesView should render quote screen 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -496,7 +496,7 @@ exports[`QuotesView should render quote screen 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -544,7 +544,7 @@ exports[`QuotesView should render quote screen 1`] = ` undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -579,7 +579,7 @@ exports[`QuotesView should render quote screen 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -642,7 +642,7 @@ exports[`QuotesView should render quote screen 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -702,7 +702,7 @@ exports[`QuotesView should render quote screen 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -765,7 +765,7 @@ exports[`QuotesView should render quote screen 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -815,7 +815,7 @@ exports[`QuotesView should render quote screen 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -914,7 +914,7 @@ exports[`QuotesView should render quote screen 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -964,7 +964,7 @@ exports[`QuotesView should render quote screen 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -1014,7 +1014,7 @@ exports[`QuotesView should render quote screen 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -1070,7 +1070,7 @@ exports[`QuotesView should render quote screen 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -1252,14 +1252,14 @@ exports[`QuotesView should render quote screen 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -1345,14 +1345,14 @@ exports[`QuotesView should render quote screen 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -1447,7 +1447,7 @@ exports[`QuotesView should render quote screen 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -1490,14 +1490,14 @@ exports[`QuotesView should render quote screen 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -1566,14 +1566,14 @@ exports[`QuotesView should render quote screen 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -1611,7 +1611,7 @@ exports[`QuotesView should render quote screen 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -1686,7 +1686,7 @@ exports[`QuotesView should render quote screen 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -1790,7 +1790,7 @@ exports[`QuotesView should render quote screen 1`] = ` }, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -1822,7 +1822,7 @@ exports[`QuotesView should render quote screen 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, diff --git a/app/components/UI/Swaps/components/LoadingAnimation/__snapshots__/index.test.tsx.snap b/app/components/UI/Swaps/components/LoadingAnimation/__snapshots__/index.test.tsx.snap index c6c2a751a024..6667eeb9c755 100644 --- a/app/components/UI/Swaps/components/LoadingAnimation/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/Swaps/components/LoadingAnimation/__snapshots__/index.test.tsx.snap @@ -25,7 +25,7 @@ exports[`LoadingAnimation renders 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -67,7 +67,7 @@ exports[`LoadingAnimation renders 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/SwitchCustomNetwork/__snapshots__/index.test.tsx.snap b/app/components/UI/SwitchCustomNetwork/__snapshots__/index.test.tsx.snap index 5407d004d0b9..d24e3bcc83d3 100644 --- a/app/components/UI/SwitchCustomNetwork/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/SwitchCustomNetwork/__snapshots__/index.test.tsx.snap @@ -94,7 +94,7 @@ exports[`SwitchCustomNetwork should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 24, "textAlign": "center", "textTransform": "uppercase", @@ -135,7 +135,7 @@ exports[`SwitchCustomNetwork should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -150,7 +150,7 @@ exports[`SwitchCustomNetwork should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -227,7 +227,7 @@ exports[`SwitchCustomNetwork should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -259,7 +259,7 @@ exports[`SwitchCustomNetwork should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -271,7 +271,7 @@ exports[`SwitchCustomNetwork should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -285,7 +285,7 @@ exports[`SwitchCustomNetwork should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -313,7 +313,7 @@ exports[`SwitchCustomNetwork should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, "letterSpacing": 0, "lineHeight": undefined, @@ -391,7 +391,7 @@ exports[`SwitchCustomNetwork should render correctly 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -451,7 +451,7 @@ exports[`SwitchCustomNetwork should render correctly 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, diff --git a/app/components/UI/Tabs/TabThumbnail/__snapshots__/TabThumbnail.test.tsx.snap b/app/components/UI/Tabs/TabThumbnail/__snapshots__/TabThumbnail.test.tsx.snap index ee1a293abc23..12e198c9714b 100644 --- a/app/components/UI/Tabs/TabThumbnail/__snapshots__/TabThumbnail.test.tsx.snap +++ b/app/components/UI/Tabs/TabThumbnail/__snapshots__/TabThumbnail.test.tsx.snap @@ -97,7 +97,7 @@ exports[`TabThumbnail should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Tabs/__snapshots__/index.test.tsx.snap b/app/components/UI/Tabs/__snapshots__/index.test.tsx.snap index 54c4a806e293..cd7a69d7487a 100644 --- a/app/components/UI/Tabs/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/Tabs/__snapshots__/index.test.tsx.snap @@ -124,7 +124,7 @@ exports[`Tabs should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -237,12 +237,12 @@ exports[`Tabs should render correctly 1`] = ` { "0": { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, }, "1": null, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -331,15 +331,15 @@ exports[`Tabs should render correctly 1`] = ` { "0": { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, }, "1": { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, "2": null, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/Tokens/TokenList/index.tsx b/app/components/UI/Tokens/TokenList/index.tsx index 9489f823c338..968107286543 100644 --- a/app/components/UI/Tokens/TokenList/index.tsx +++ b/app/components/UI/Tokens/TokenList/index.tsx @@ -1,6 +1,6 @@ import React, { useCallback, useLayoutEffect, useRef, useMemo } from 'react'; import { RefreshControl } from 'react-native'; -import { FlashList, FlashListRef } from '@shopify/flash-list'; +import { FlashList } from '@shopify/flash-list'; import { useSelector } from 'react-redux'; import { useTheme } from '../../../../util/theme'; import { @@ -69,7 +69,7 @@ const TokenListComponent = ({ ? TokenListItemBip44 : TokenListItem; - const listRef = useRef>(null); + const listRef = useRef>(null); const navigation = useNavigation(); const { trackEvent, createEventBuilder } = useMetrics(); diff --git a/app/components/UI/TransactionElement/TransactionDetails/__snapshots__/index.test.tsx.snap b/app/components/UI/TransactionElement/TransactionDetails/__snapshots__/index.test.tsx.snap index 8947cef12a9d..48e781572994 100644 --- a/app/components/UI/TransactionElement/TransactionDetails/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/TransactionElement/TransactionDetails/__snapshots__/index.test.tsx.snap @@ -353,7 +353,7 @@ exports[`TransactionDetails should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -383,7 +383,7 @@ exports[`TransactionDetails should render correctly 1`] = ` [ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, "marginBottom": 8, }, @@ -399,14 +399,14 @@ exports[`TransactionDetails should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, { "color": "#457a39", @@ -462,7 +462,7 @@ exports[`TransactionDetails should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -492,7 +492,7 @@ exports[`TransactionDetails should render correctly 1`] = ` [ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, "marginBottom": 8, }, @@ -510,7 +510,7 @@ exports[`TransactionDetails should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -548,7 +548,7 @@ exports[`TransactionDetails should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -578,7 +578,7 @@ exports[`TransactionDetails should render correctly 1`] = ` [ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, "marginBottom": 8, }, @@ -641,7 +641,7 @@ exports[`TransactionDetails should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -678,7 +678,7 @@ exports[`TransactionDetails should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -708,7 +708,7 @@ exports[`TransactionDetails should render correctly 1`] = ` [ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, "marginBottom": 8, }, @@ -771,7 +771,7 @@ exports[`TransactionDetails should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -818,7 +818,7 @@ exports[`TransactionDetails should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -850,7 +850,7 @@ exports[`TransactionDetails should render correctly 1`] = ` [ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, "marginBottom": 8, }, @@ -908,7 +908,7 @@ exports[`TransactionDetails should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -950,7 +950,7 @@ exports[`TransactionDetails should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -1021,7 +1021,7 @@ exports[`TransactionDetails should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -1091,14 +1091,14 @@ exports[`TransactionDetails should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -1135,14 +1135,14 @@ exports[`TransactionDetails should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -1199,7 +1199,7 @@ exports[`TransactionDetails should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -1253,7 +1253,7 @@ exports[`TransactionDetails should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1630,7 +1630,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -1660,7 +1660,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, "marginBottom": 8, }, @@ -1676,14 +1676,14 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, { "color": "#457a39", @@ -1739,7 +1739,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -1769,7 +1769,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, "marginBottom": 8, }, @@ -1787,7 +1787,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1825,7 +1825,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -1855,7 +1855,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, "marginBottom": 8, }, @@ -1918,7 +1918,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1955,7 +1955,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -1985,7 +1985,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, "marginBottom": 8, }, @@ -2048,7 +2048,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2095,7 +2095,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -2127,7 +2127,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, "marginBottom": 8, }, @@ -2185,7 +2185,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -2227,7 +2227,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -2298,7 +2298,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -2368,14 +2368,14 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -2412,14 +2412,14 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -2476,7 +2476,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -2530,7 +2530,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2907,7 +2907,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -2937,7 +2937,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, "marginBottom": 8, }, @@ -2953,14 +2953,14 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, { "color": "#457a39", @@ -3016,7 +3016,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -3046,7 +3046,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, "marginBottom": 8, }, @@ -3064,7 +3064,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3102,7 +3102,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -3132,7 +3132,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, "marginBottom": 8, }, @@ -3195,7 +3195,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3232,7 +3232,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -3262,7 +3262,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, "marginBottom": 8, }, @@ -3325,7 +3325,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3372,7 +3372,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -3404,7 +3404,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, "marginBottom": 8, }, @@ -3462,7 +3462,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -3504,7 +3504,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -3575,7 +3575,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -3645,14 +3645,14 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -3689,14 +3689,14 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -3753,7 +3753,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -3807,7 +3807,7 @@ exports[`TransactionDetails should render correctly for multi-layer fee network style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/TransactionHeader/__snapshots__/index.test.tsx.snap b/app/components/UI/TransactionHeader/__snapshots__/index.test.tsx.snap index d318f020cbf2..3ea6580ec67b 100644 --- a/app/components/UI/TransactionHeader/__snapshots__/index.test.tsx.snap +++ b/app/components/UI/TransactionHeader/__snapshots__/index.test.tsx.snap @@ -114,7 +114,7 @@ exports[`TransactionHeader render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", } @@ -150,7 +150,7 @@ exports[`TransactionHeader render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "padding": 5, "textAlign": "center", diff --git a/app/components/UI/UpdateNeeded/__snapshots__/UpdateNeeded.test.tsx.snap b/app/components/UI/UpdateNeeded/__snapshots__/UpdateNeeded.test.tsx.snap index 016f2baec6c8..a801232af81a 100644 --- a/app/components/UI/UpdateNeeded/__snapshots__/UpdateNeeded.test.tsx.snap +++ b/app/components/UI/UpdateNeeded/__snapshots__/UpdateNeeded.test.tsx.snap @@ -522,7 +522,7 @@ exports[`UpdateNeeded should render snapshot correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -538,7 +538,7 @@ exports[`UpdateNeeded should render snapshot correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -586,7 +586,7 @@ exports[`UpdateNeeded should render snapshot correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/UI/WarningAlert/__snapshots__/WarningAlert.test.tsx.snap b/app/components/UI/WarningAlert/__snapshots__/WarningAlert.test.tsx.snap index db7b4b6f49bc..0da5811e13c6 100644 --- a/app/components/UI/WarningAlert/__snapshots__/WarningAlert.test.tsx.snap +++ b/app/components/UI/WarningAlert/__snapshots__/WarningAlert.test.tsx.snap @@ -78,7 +78,7 @@ exports[`WarningAlert should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -126,7 +126,7 @@ exports[`WarningAlert should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, diff --git a/app/components/UI/WhatsNewModal/WhatsNewModal.styles.ts b/app/components/UI/WhatsNewModal/WhatsNewModal.styles.ts index ed7412b38e0a..f82471464171 100644 --- a/app/components/UI/WhatsNewModal/WhatsNewModal.styles.ts +++ b/app/components/UI/WhatsNewModal/WhatsNewModal.styles.ts @@ -1,5 +1,6 @@ import { StyleSheet } from 'react-native'; import Device from '../../../util/device'; +import { fontStyles } from '../../../styles/common'; import { Theme } from '@metamask/design-tokens'; const modalPadding = 24; @@ -22,7 +23,7 @@ const createStyles = ({ theme }: { theme: Theme }) => header: { textAlign: 'center', marginTop: 16, - fontWeight: 'bold', + ...fontStyles.bold, }, headerContainer: { alignItems: 'center', diff --git a/app/components/Views/AccountBackupStep1/__snapshots__/index.test.tsx.snap b/app/components/Views/AccountBackupStep1/__snapshots__/index.test.tsx.snap index 7c7a4cda8b90..1e23054d2238 100644 --- a/app/components/Views/AccountBackupStep1/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/AccountBackupStep1/__snapshots__/index.test.tsx.snap @@ -47,7 +47,7 @@ exports[`AccountBackupStep1 Snapshots android render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -72,7 +72,7 @@ exports[`AccountBackupStep1 Snapshots android render matches snapshot 1`] = ` { "alignSelf": "flex-start", "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -109,7 +109,7 @@ exports[`AccountBackupStep1 Snapshots android render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -124,7 +124,7 @@ exports[`AccountBackupStep1 Snapshots android render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -143,7 +143,7 @@ exports[`AccountBackupStep1 Snapshots android render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -192,7 +192,7 @@ exports[`AccountBackupStep1 Snapshots android render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -233,7 +233,7 @@ exports[`AccountBackupStep1 Snapshots android render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -298,7 +298,7 @@ exports[`AccountBackupStep1 Snapshots android render matches snapshot with statu style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -323,7 +323,7 @@ exports[`AccountBackupStep1 Snapshots android render matches snapshot with statu { "alignSelf": "flex-start", "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -360,7 +360,7 @@ exports[`AccountBackupStep1 Snapshots android render matches snapshot with statu style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -375,7 +375,7 @@ exports[`AccountBackupStep1 Snapshots android render matches snapshot with statu style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -394,7 +394,7 @@ exports[`AccountBackupStep1 Snapshots android render matches snapshot with statu style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -443,7 +443,7 @@ exports[`AccountBackupStep1 Snapshots android render matches snapshot with statu style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -484,7 +484,7 @@ exports[`AccountBackupStep1 Snapshots android render matches snapshot with statu style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -549,7 +549,7 @@ exports[`AccountBackupStep1 Snapshots iOS render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -574,7 +574,7 @@ exports[`AccountBackupStep1 Snapshots iOS render matches snapshot 1`] = ` { "alignSelf": "flex-start", "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -611,7 +611,7 @@ exports[`AccountBackupStep1 Snapshots iOS render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -626,7 +626,7 @@ exports[`AccountBackupStep1 Snapshots iOS render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -645,7 +645,7 @@ exports[`AccountBackupStep1 Snapshots iOS render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -694,7 +694,7 @@ exports[`AccountBackupStep1 Snapshots iOS render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -735,7 +735,7 @@ exports[`AccountBackupStep1 Snapshots iOS render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -800,7 +800,7 @@ exports[`AccountBackupStep1 Theme appearance renders dark SRP design image by de style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -825,7 +825,7 @@ exports[`AccountBackupStep1 Theme appearance renders dark SRP design image by de { "alignSelf": "flex-start", "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -862,7 +862,7 @@ exports[`AccountBackupStep1 Theme appearance renders dark SRP design image by de style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -877,7 +877,7 @@ exports[`AccountBackupStep1 Theme appearance renders dark SRP design image by de style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -896,7 +896,7 @@ exports[`AccountBackupStep1 Theme appearance renders dark SRP design image by de style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -945,7 +945,7 @@ exports[`AccountBackupStep1 Theme appearance renders dark SRP design image by de style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -986,7 +986,7 @@ exports[`AccountBackupStep1 Theme appearance renders dark SRP design image by de style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1051,7 +1051,7 @@ exports[`AccountBackupStep1 Theme appearance renders light SRP design image for style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1076,7 +1076,7 @@ exports[`AccountBackupStep1 Theme appearance renders light SRP design image for { "alignSelf": "flex-start", "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -1113,7 +1113,7 @@ exports[`AccountBackupStep1 Theme appearance renders light SRP design image for style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1128,7 +1128,7 @@ exports[`AccountBackupStep1 Theme appearance renders light SRP design image for style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1147,7 +1147,7 @@ exports[`AccountBackupStep1 Theme appearance renders light SRP design image for style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1196,7 +1196,7 @@ exports[`AccountBackupStep1 Theme appearance renders light SRP design image for style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1237,7 +1237,7 @@ exports[`AccountBackupStep1 Theme appearance renders light SRP design image for style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/AccountBackupStep1B/__snapshots__/index.test.tsx.snap b/app/components/Views/AccountBackupStep1B/__snapshots__/index.test.tsx.snap index 8f970f713664..39ee7a9cb907 100644 --- a/app/components/Views/AccountBackupStep1B/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/AccountBackupStep1B/__snapshots__/index.test.tsx.snap @@ -309,7 +309,7 @@ exports[`AccountBackupStep1B render matches snapshot 1`] = ` "color": "#b7bbc8", }, { - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, }, ] @@ -357,7 +357,7 @@ exports[`AccountBackupStep1B render matches snapshot 1`] = ` "color": "#4459ff", }, { - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, }, ] @@ -405,7 +405,7 @@ exports[`AccountBackupStep1B render matches snapshot 1`] = ` "color": "#b7bbc8", }, { - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, }, ] @@ -437,7 +437,7 @@ exports[`AccountBackupStep1B render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "justifyContent": "center", "marginBottom": 16, @@ -460,7 +460,7 @@ exports[`AccountBackupStep1B render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "lineHeight": 20, "textAlign": "left", @@ -544,7 +544,7 @@ exports[`AccountBackupStep1B render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "lineHeight": 17, "marginBottom": 8, @@ -763,7 +763,7 @@ exports[`AccountBackupStep1B render matches snapshot 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, diff --git a/app/components/Views/AccountConnect/AccountConnectMultiSelector/__snapshots__/AccountConnectMultiSelector.test.tsx.snap b/app/components/Views/AccountConnect/AccountConnectMultiSelector/__snapshots__/AccountConnectMultiSelector.test.tsx.snap index 2dd066118a8e..507f5ae59912 100644 --- a/app/components/Views/AccountConnect/AccountConnectMultiSelector/__snapshots__/AccountConnectMultiSelector.test.tsx.snap +++ b/app/components/Views/AccountConnect/AccountConnectMultiSelector/__snapshots__/AccountConnectMultiSelector.test.tsx.snap @@ -67,7 +67,7 @@ exports[`AccountConnectMultiSelector renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -98,7 +98,7 @@ exports[`AccountConnectMultiSelector renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -181,7 +181,7 @@ exports[`AccountConnectMultiSelector renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -221,7 +221,7 @@ exports[`AccountConnectMultiSelector renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -433,7 +433,7 @@ exports[`AccountConnectMultiSelector renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -449,7 +449,7 @@ exports[`AccountConnectMultiSelector renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -606,7 +606,7 @@ exports[`AccountConnectMultiSelector renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -622,7 +622,7 @@ exports[`AccountConnectMultiSelector renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -692,7 +692,7 @@ exports[`AccountConnectMultiSelector renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/AccountConnect/__snapshots__/AccountConnect.test.tsx.snap b/app/components/Views/AccountConnect/__snapshots__/AccountConnect.test.tsx.snap index fe9fcb59927d..dd085d5ff12c 100644 --- a/app/components/Views/AccountConnect/__snapshots__/AccountConnect.test.tsx.snap +++ b/app/components/Views/AccountConnect/__snapshots__/AccountConnect.test.tsx.snap @@ -211,7 +211,7 @@ exports[`AccountConnect renders correctly when merging existing CAIP-25 permissi [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 24, "textAlign": "center", "textTransform": "uppercase", @@ -252,7 +252,7 @@ exports[`AccountConnect renders correctly when merging existing CAIP-25 permissi style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -267,7 +267,7 @@ exports[`AccountConnect renders correctly when merging existing CAIP-25 permissi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -404,7 +404,7 @@ exports[`AccountConnect renders correctly when merging existing CAIP-25 permissi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -418,7 +418,7 @@ exports[`AccountConnect renders correctly when merging existing CAIP-25 permissi style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -449,7 +449,7 @@ exports[`AccountConnect renders correctly when merging existing CAIP-25 permissi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -489,7 +489,7 @@ exports[`AccountConnect renders correctly when merging existing CAIP-25 permissi style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -575,7 +575,7 @@ exports[`AccountConnect renders correctly when merging existing CAIP-25 permissi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -607,7 +607,7 @@ exports[`AccountConnect renders correctly when merging existing CAIP-25 permissi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -620,7 +620,7 @@ exports[`AccountConnect renders correctly when merging existing CAIP-25 permissi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -701,7 +701,7 @@ exports[`AccountConnect renders correctly when merging existing CAIP-25 permissi style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -770,7 +770,7 @@ exports[`AccountConnect renders correctly when merging existing CAIP-25 permissi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -802,7 +802,7 @@ exports[`AccountConnect renders correctly when merging existing CAIP-25 permissi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -814,7 +814,7 @@ exports[`AccountConnect renders correctly when merging existing CAIP-25 permissi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -902,7 +902,7 @@ exports[`AccountConnect renders correctly when merging existing CAIP-25 permissi style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -980,7 +980,7 @@ exports[`AccountConnect renders correctly when merging existing CAIP-25 permissi null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -1040,7 +1040,7 @@ exports[`AccountConnect renders correctly when merging existing CAIP-25 permissi null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -1277,7 +1277,7 @@ exports[`AccountConnect renders correctly with base request when there is no exi [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 24, "textAlign": "center", "textTransform": "uppercase", @@ -1318,7 +1318,7 @@ exports[`AccountConnect renders correctly with base request when there is no exi style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1333,7 +1333,7 @@ exports[`AccountConnect renders correctly with base request when there is no exi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1470,7 +1470,7 @@ exports[`AccountConnect renders correctly with base request when there is no exi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1484,7 +1484,7 @@ exports[`AccountConnect renders correctly with base request when there is no exi style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1515,7 +1515,7 @@ exports[`AccountConnect renders correctly with base request when there is no exi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1555,7 +1555,7 @@ exports[`AccountConnect renders correctly with base request when there is no exi style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1641,7 +1641,7 @@ exports[`AccountConnect renders correctly with base request when there is no exi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1673,7 +1673,7 @@ exports[`AccountConnect renders correctly with base request when there is no exi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1686,7 +1686,7 @@ exports[`AccountConnect renders correctly with base request when there is no exi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1767,7 +1767,7 @@ exports[`AccountConnect renders correctly with base request when there is no exi style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1836,7 +1836,7 @@ exports[`AccountConnect renders correctly with base request when there is no exi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1868,7 +1868,7 @@ exports[`AccountConnect renders correctly with base request when there is no exi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1880,7 +1880,7 @@ exports[`AccountConnect renders correctly with base request when there is no exi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1968,7 +1968,7 @@ exports[`AccountConnect renders correctly with base request when there is no exi style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2046,7 +2046,7 @@ exports[`AccountConnect renders correctly with base request when there is no exi null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -2106,7 +2106,7 @@ exports[`AccountConnect renders correctly with base request when there is no exi null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -2343,7 +2343,7 @@ exports[`AccountConnect renders correctly with request including chains and acco [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 24, "textAlign": "center", "textTransform": "uppercase", @@ -2384,7 +2384,7 @@ exports[`AccountConnect renders correctly with request including chains and acco style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2399,7 +2399,7 @@ exports[`AccountConnect renders correctly with request including chains and acco style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2536,7 +2536,7 @@ exports[`AccountConnect renders correctly with request including chains and acco style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2550,7 +2550,7 @@ exports[`AccountConnect renders correctly with request including chains and acco style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2581,7 +2581,7 @@ exports[`AccountConnect renders correctly with request including chains and acco style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2621,7 +2621,7 @@ exports[`AccountConnect renders correctly with request including chains and acco style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2707,7 +2707,7 @@ exports[`AccountConnect renders correctly with request including chains and acco style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2739,7 +2739,7 @@ exports[`AccountConnect renders correctly with request including chains and acco style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2752,7 +2752,7 @@ exports[`AccountConnect renders correctly with request including chains and acco style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2833,7 +2833,7 @@ exports[`AccountConnect renders correctly with request including chains and acco style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2902,7 +2902,7 @@ exports[`AccountConnect renders correctly with request including chains and acco style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2934,7 +2934,7 @@ exports[`AccountConnect renders correctly with request including chains and acco style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2946,7 +2946,7 @@ exports[`AccountConnect renders correctly with request including chains and acco style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3034,7 +3034,7 @@ exports[`AccountConnect renders correctly with request including chains and acco style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3112,7 +3112,7 @@ exports[`AccountConnect renders correctly with request including chains and acco null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -3172,7 +3172,7 @@ exports[`AccountConnect renders correctly with request including chains and acco null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -3409,7 +3409,7 @@ exports[`AccountConnect renders correctly with request including only chains 1`] [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 24, "textAlign": "center", "textTransform": "uppercase", @@ -3450,7 +3450,7 @@ exports[`AccountConnect renders correctly with request including only chains 1`] style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3465,7 +3465,7 @@ exports[`AccountConnect renders correctly with request including only chains 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3602,7 +3602,7 @@ exports[`AccountConnect renders correctly with request including only chains 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3616,7 +3616,7 @@ exports[`AccountConnect renders correctly with request including only chains 1`] style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3647,7 +3647,7 @@ exports[`AccountConnect renders correctly with request including only chains 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3687,7 +3687,7 @@ exports[`AccountConnect renders correctly with request including only chains 1`] style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3773,7 +3773,7 @@ exports[`AccountConnect renders correctly with request including only chains 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3805,7 +3805,7 @@ exports[`AccountConnect renders correctly with request including only chains 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3818,7 +3818,7 @@ exports[`AccountConnect renders correctly with request including only chains 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3899,7 +3899,7 @@ exports[`AccountConnect renders correctly with request including only chains 1`] style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3968,7 +3968,7 @@ exports[`AccountConnect renders correctly with request including only chains 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4000,7 +4000,7 @@ exports[`AccountConnect renders correctly with request including only chains 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4012,7 +4012,7 @@ exports[`AccountConnect renders correctly with request including only chains 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4100,7 +4100,7 @@ exports[`AccountConnect renders correctly with request including only chains 1`] style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4178,7 +4178,7 @@ exports[`AccountConnect renders correctly with request including only chains 1`] null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -4238,7 +4238,7 @@ exports[`AccountConnect renders correctly with request including only chains 1`] null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, diff --git a/app/components/Views/AccountPermissions/AccountPermissionsConfirmRevokeAll/__snapshots__/AccountPermissionsConfirmRevokeAll.test.tsx.snap b/app/components/Views/AccountPermissions/AccountPermissionsConfirmRevokeAll/__snapshots__/AccountPermissionsConfirmRevokeAll.test.tsx.snap index 688f72fc3fc9..7197e66148ae 100644 --- a/app/components/Views/AccountPermissions/AccountPermissionsConfirmRevokeAll/__snapshots__/AccountPermissionsConfirmRevokeAll.test.tsx.snap +++ b/app/components/Views/AccountPermissions/AccountPermissionsConfirmRevokeAll/__snapshots__/AccountPermissionsConfirmRevokeAll.test.tsx.snap @@ -152,7 +152,7 @@ exports[`AccountPermissionsConfirmRevokeAll renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -177,7 +177,7 @@ exports[`AccountPermissionsConfirmRevokeAll renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -225,7 +225,7 @@ exports[`AccountPermissionsConfirmRevokeAll renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -263,7 +263,7 @@ exports[`AccountPermissionsConfirmRevokeAll renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/AccountPermissions/ConnectionDetails/__snapshots__/ConnectionDetails.test.tsx.snap b/app/components/Views/AccountPermissions/ConnectionDetails/__snapshots__/ConnectionDetails.test.tsx.snap index 89cafa31da20..caf50512704d 100644 --- a/app/components/Views/AccountPermissions/ConnectionDetails/__snapshots__/ConnectionDetails.test.tsx.snap +++ b/app/components/Views/AccountPermissions/ConnectionDetails/__snapshots__/ConnectionDetails.test.tsx.snap @@ -35,7 +35,7 @@ exports[`ConnectionDetails renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -60,7 +60,7 @@ exports[`ConnectionDetails renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -105,7 +105,7 @@ exports[`ConnectionDetails renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/AccountPermissions/NetworkPermissionsConnected/__snapshots__/NetworkPermissionsConnected.test.tsx.snap b/app/components/Views/AccountPermissions/NetworkPermissionsConnected/__snapshots__/NetworkPermissionsConnected.test.tsx.snap index 84452860929e..8c13afcfa9eb 100644 --- a/app/components/Views/AccountPermissions/NetworkPermissionsConnected/__snapshots__/NetworkPermissionsConnected.test.tsx.snap +++ b/app/components/Views/AccountPermissions/NetworkPermissionsConnected/__snapshots__/NetworkPermissionsConnected.test.tsx.snap @@ -59,7 +59,7 @@ exports[`NetworkPermissionsConnected renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -247,7 +247,7 @@ exports[`NetworkPermissionsConnected renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -298,7 +298,7 @@ exports[`NetworkPermissionsConnected renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/AccountPermissions/PermittedNetworksInfoSheet/__snapshots__/PermittedNetworksInfoSheet.test.tsx.snap b/app/components/Views/AccountPermissions/PermittedNetworksInfoSheet/__snapshots__/PermittedNetworksInfoSheet.test.tsx.snap index 1d1a2d66e611..6e2de2290e89 100644 --- a/app/components/Views/AccountPermissions/PermittedNetworksInfoSheet/__snapshots__/PermittedNetworksInfoSheet.test.tsx.snap +++ b/app/components/Views/AccountPermissions/PermittedNetworksInfoSheet/__snapshots__/PermittedNetworksInfoSheet.test.tsx.snap @@ -36,7 +36,7 @@ exports[`PermittedNetworksInfoSheet should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -62,7 +62,7 @@ exports[`PermittedNetworksInfoSheet should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -109,7 +109,7 @@ exports[`PermittedNetworksInfoSheet should render correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/AccountPermissions/__snapshots__/AccountPermissions.test.tsx.snap b/app/components/Views/AccountPermissions/__snapshots__/AccountPermissions.test.tsx.snap index b0a81bf91c10..4e3521eabaa7 100644 --- a/app/components/Views/AccountPermissions/__snapshots__/AccountPermissions.test.tsx.snap +++ b/app/components/Views/AccountPermissions/__snapshots__/AccountPermissions.test.tsx.snap @@ -159,7 +159,7 @@ exports[`AccountPermissions renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -181,7 +181,7 @@ exports[`AccountPermissions renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -339,7 +339,7 @@ exports[`AccountPermissions renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -365,7 +365,7 @@ exports[`AccountPermissions renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -397,7 +397,7 @@ exports[`AccountPermissions renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -620,7 +620,7 @@ exports[`AccountPermissions renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -662,7 +662,7 @@ exports[`AccountPermissions renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/AccountSelector/__snapshots__/AccountSelector.test.tsx.snap b/app/components/Views/AccountSelector/__snapshots__/AccountSelector.test.tsx.snap index f396c9ec8a68..bc091066f142 100644 --- a/app/components/Views/AccountSelector/__snapshots__/AccountSelector.test.tsx.snap +++ b/app/components/Views/AccountSelector/__snapshots__/AccountSelector.test.tsx.snap @@ -453,7 +453,7 @@ exports[`AccountSelector should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -648,9 +648,8 @@ exports[`AccountSelector should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 24, } @@ -675,7 +674,7 @@ exports[`AccountSelector should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -845,9 +844,8 @@ exports[`AccountSelector should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 24, } @@ -872,7 +870,7 @@ exports[`AccountSelector should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -997,7 +995,7 @@ exports[`AccountSelector should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/AccountStatus/__snapshots__/index.test.tsx.snap b/app/components/Views/AccountStatus/__snapshots__/index.test.tsx.snap index c2724c320c92..41d6951d3934 100644 --- a/app/components/Views/AccountStatus/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/AccountStatus/__snapshots__/index.test.tsx.snap @@ -48,7 +48,7 @@ exports[`AccountStatus Snapshots android renders correctly with accountName in r style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -84,7 +84,7 @@ exports[`AccountStatus Snapshots android renders correctly with accountName in r style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -134,7 +134,7 @@ exports[`AccountStatus Snapshots android renders correctly with accountName in r style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -172,7 +172,7 @@ exports[`AccountStatus Snapshots android renders correctly with accountName in r style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -235,7 +235,7 @@ exports[`AccountStatus Snapshots android renders correctly with type="found" 1`] style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -271,7 +271,7 @@ exports[`AccountStatus Snapshots android renders correctly with type="found" 1`] style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -321,7 +321,7 @@ exports[`AccountStatus Snapshots android renders correctly with type="found" 1`] style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -359,7 +359,7 @@ exports[`AccountStatus Snapshots android renders correctly with type="found" 1`] style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -422,7 +422,7 @@ exports[`AccountStatus Snapshots android renders correctly with type="not_exist" style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -458,7 +458,7 @@ exports[`AccountStatus Snapshots android renders correctly with type="not_exist" style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -508,7 +508,7 @@ exports[`AccountStatus Snapshots android renders correctly with type="not_exist" style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -546,7 +546,7 @@ exports[`AccountStatus Snapshots android renders correctly with type="not_exist" style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -609,7 +609,7 @@ exports[`AccountStatus Snapshots iOS renders correctly with accountName in route style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -645,7 +645,7 @@ exports[`AccountStatus Snapshots iOS renders correctly with accountName in route style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -695,7 +695,7 @@ exports[`AccountStatus Snapshots iOS renders correctly with accountName in route style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -733,7 +733,7 @@ exports[`AccountStatus Snapshots iOS renders correctly with accountName in route style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -796,7 +796,7 @@ exports[`AccountStatus Snapshots iOS renders correctly with type="found" 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -832,7 +832,7 @@ exports[`AccountStatus Snapshots iOS renders correctly with type="found" 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -882,7 +882,7 @@ exports[`AccountStatus Snapshots iOS renders correctly with type="found" 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -920,7 +920,7 @@ exports[`AccountStatus Snapshots iOS renders correctly with type="found" 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -983,7 +983,7 @@ exports[`AccountStatus Snapshots iOS renders correctly with type="not_exist" 1`] style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -1019,7 +1019,7 @@ exports[`AccountStatus Snapshots iOS renders correctly with type="not_exist" 1`] style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1069,7 +1069,7 @@ exports[`AccountStatus Snapshots iOS renders correctly with type="not_exist" 1`] style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1107,7 +1107,7 @@ exports[`AccountStatus Snapshots iOS renders correctly with type="not_exist" 1`] style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/AccountStatus/index.styles.ts b/app/components/Views/AccountStatus/index.styles.ts index d1202d64d252..7a74c5995024 100644 --- a/app/components/Views/AccountStatus/index.styles.ts +++ b/app/components/Views/AccountStatus/index.styles.ts @@ -1,4 +1,5 @@ import { StyleSheet, Platform, Dimensions } from 'react-native'; +import { fontStyles } from '../../../styles/common'; const IMAGE_MAX_WIDTH = 343; const IMAGE_ASPECT_RATIO = 343 / 302; @@ -36,7 +37,7 @@ const styles = StyleSheet.create({ textAlign: 'left', marginTop: 14, lineHeight: 22, - fontWeight: '400', + ...fontStyles.normal, }, descriptionWrapper: { width: '100%', diff --git a/app/components/Views/ActivityView/__snapshots__/index.test.tsx.snap b/app/components/Views/ActivityView/__snapshots__/index.test.tsx.snap index 04c245c862e2..c60de7401aba 100644 --- a/app/components/Views/ActivityView/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/ActivityView/__snapshots__/index.test.tsx.snap @@ -330,7 +330,7 @@ exports[`ActivityView should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "fontWeight": "700", "letterSpacing": 0, @@ -427,7 +427,7 @@ exports[`ActivityView should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/AddAccountActions/__snapshots__/AddAccountActions.test.tsx.snap b/app/components/Views/AddAccountActions/__snapshots__/AddAccountActions.test.tsx.snap index f1aea251f65a..de64a5668d0f 100644 --- a/app/components/Views/AddAccountActions/__snapshots__/AddAccountActions.test.tsx.snap +++ b/app/components/Views/AddAccountActions/__snapshots__/AddAccountActions.test.tsx.snap @@ -131,7 +131,7 @@ exports[`AddAccountActions renders correctly 1`] = ` - - @@ -242,7 +225,7 @@ exports[`AddAccountActions renders correctly 1`] = ` - - + + `; diff --git a/app/components/Views/AddAsset/__snapshots__/AddAsset.test.tsx.snap b/app/components/Views/AddAsset/__snapshots__/AddAsset.test.tsx.snap index 64bd3c7c2ded..09441458f2c4 100644 --- a/app/components/Views/AddAsset/__snapshots__/AddAsset.test.tsx.snap +++ b/app/components/Views/AddAsset/__snapshots__/AddAsset.test.tsx.snap @@ -67,7 +67,7 @@ exports[`AddAsset component renders collectible view correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -188,7 +188,7 @@ exports[`AddAsset component renders collectible view correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, } } @@ -272,7 +272,7 @@ exports[`AddAsset component renders collectible view correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "paddingBottom": 3, } } @@ -293,7 +293,7 @@ exports[`AddAsset component renders collectible view correctly 1`] = ` "borderRadius": 4, "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "padding": 16, }, {}, @@ -306,7 +306,7 @@ exports[`AddAsset component renders collectible view correctly 1`] = ` style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "marginTop": 15, } } @@ -324,7 +324,7 @@ exports[`AddAsset component renders collectible view correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "paddingBottom": 3, } } @@ -347,7 +347,7 @@ exports[`AddAsset component renders collectible view correctly 1`] = ` "borderRadius": 4, "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "padding": 16, }, {}, @@ -360,7 +360,7 @@ exports[`AddAsset component renders collectible view correctly 1`] = ` style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "marginTop": 15, } } @@ -413,7 +413,7 @@ exports[`AddAsset component renders collectible view correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -454,7 +454,7 @@ exports[`AddAsset component renders collectible view correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -534,7 +534,7 @@ exports[`AddAsset component renders token view correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -696,7 +696,7 @@ exports[`AddAsset component renders token view correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -770,7 +770,7 @@ exports[`AddAsset component renders token view correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", } } > @@ -791,7 +791,7 @@ exports[`AddAsset component renders token view correctly 1`] = ` "borderRadius": 8, "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "paddingHorizontal": 16, "paddingVertical": 12, } @@ -803,7 +803,7 @@ exports[`AddAsset component renders token view correctly 1`] = ` style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "marginTop": 0, "paddingBottom": 8, } @@ -829,7 +829,7 @@ exports[`AddAsset component renders token view correctly 1`] = ` "borderRadius": 12, "color": "#4459ff", "flexDirection": "row", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, "height": 48, "justifyContent": "center", @@ -848,7 +848,7 @@ exports[`AddAsset component renders token view correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/AddAsset/components/__snapshots__/NetworkFilterBottomSheet.test.tsx.snap b/app/components/Views/AddAsset/components/__snapshots__/NetworkFilterBottomSheet.test.tsx.snap index 9d5e72623eee..37af5bffefdb 100644 --- a/app/components/Views/AddAsset/components/__snapshots__/NetworkFilterBottomSheet.test.tsx.snap +++ b/app/components/Views/AddAsset/components/__snapshots__/NetworkFilterBottomSheet.test.tsx.snap @@ -132,7 +132,7 @@ exports[`NetworkFilterBottomSheet should render correctly 1`] = ` { "alignSelf": "center", "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -178,7 +178,7 @@ exports[`NetworkFilterBottomSheet should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -334,7 +334,7 @@ exports[`NetworkFilterBottomSheet should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/AddBookmark/__snapshots__/index.test.tsx.snap b/app/components/Views/AddBookmark/__snapshots__/index.test.tsx.snap index 8d6cdd6a0941..ca716d0be3d8 100644 --- a/app/components/Views/AddBookmark/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/AddBookmark/__snapshots__/index.test.tsx.snap @@ -93,7 +93,7 @@ exports[`AddBookmark should render correctly 1`] = ` style={ { "color": "black", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", } } > @@ -111,7 +111,7 @@ exports[`AddBookmark should render correctly 1`] = ` "borderRadius": 4, "borderWidth": 1, "color": "black", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "padding": 16, } } @@ -122,7 +122,7 @@ exports[`AddBookmark should render correctly 1`] = ` style={ { "color": "red", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", } } /> @@ -138,7 +138,7 @@ exports[`AddBookmark should render correctly 1`] = ` style={ { "color": "black", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", } } > @@ -155,7 +155,7 @@ exports[`AddBookmark should render correctly 1`] = ` "borderRadius": 4, "borderWidth": 1, "color": "black", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "padding": 16, } } @@ -166,7 +166,7 @@ exports[`AddBookmark should render correctly 1`] = ` style={ { "color": "red", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", } } /> @@ -217,7 +217,7 @@ exports[`AddBookmark should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -257,7 +257,7 @@ exports[`AddBookmark should render correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/AddressSelector/__snapshots__/AddressSelector.test.tsx.snap b/app/components/Views/AddressSelector/__snapshots__/AddressSelector.test.tsx.snap index 58a190e91221..59dd91ef0c56 100644 --- a/app/components/Views/AddressSelector/__snapshots__/AddressSelector.test.tsx.snap +++ b/app/components/Views/AddressSelector/__snapshots__/AddressSelector.test.tsx.snap @@ -467,7 +467,7 @@ exports[`AccountSelector renders correctly and matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -561,7 +561,7 @@ exports[`AccountSelector renders correctly and matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/AesCryptoTestForm/__snapshots__/AesCryptoTestForm.test.tsx.snap b/app/components/Views/AesCryptoTestForm/__snapshots__/AesCryptoTestForm.test.tsx.snap index acc1156b16d8..2d6a02f73c79 100644 --- a/app/components/Views/AesCryptoTestForm/__snapshots__/AesCryptoTestForm.test.tsx.snap +++ b/app/components/Views/AesCryptoTestForm/__snapshots__/AesCryptoTestForm.test.tsx.snap @@ -30,7 +30,7 @@ exports[`AesCryptoTestForm renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -45,7 +45,7 @@ exports[`AesCryptoTestForm renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -65,7 +65,7 @@ exports[`AesCryptoTestForm renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -128,7 +128,7 @@ exports[`AesCryptoTestForm renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -151,7 +151,7 @@ exports[`AesCryptoTestForm renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -239,7 +239,7 @@ exports[`AesCryptoTestForm renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -262,7 +262,7 @@ exports[`AesCryptoTestForm renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -350,7 +350,7 @@ exports[`AesCryptoTestForm renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -373,7 +373,7 @@ exports[`AesCryptoTestForm renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -436,7 +436,7 @@ exports[`AesCryptoTestForm renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -459,7 +459,7 @@ exports[`AesCryptoTestForm renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -547,7 +547,7 @@ exports[`AesCryptoTestForm renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -570,7 +570,7 @@ exports[`AesCryptoTestForm renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -633,7 +633,7 @@ exports[`AesCryptoTestForm renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/AesCryptoTestForm/__snapshots__/Clipboard.test.tsx.snap b/app/components/Views/AesCryptoTestForm/__snapshots__/Clipboard.test.tsx.snap index 2d3348b7549f..ab8e94e8dd19 100644 --- a/app/components/Views/AesCryptoTestForm/__snapshots__/Clipboard.test.tsx.snap +++ b/app/components/Views/AesCryptoTestForm/__snapshots__/Clipboard.test.tsx.snap @@ -11,7 +11,7 @@ exports[`ClipboardText renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/AesCryptoTestForm/__snapshots__/Form.test.tsx.snap b/app/components/Views/AesCryptoTestForm/__snapshots__/Form.test.tsx.snap index aa30b6674372..5d2b482449a7 100644 --- a/app/components/Views/AesCryptoTestForm/__snapshots__/Form.test.tsx.snap +++ b/app/components/Views/AesCryptoTestForm/__snapshots__/Form.test.tsx.snap @@ -7,7 +7,7 @@ exports[`TestForm renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -53,7 +53,7 @@ exports[`TestForm renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/Asset/__snapshots__/index.test.js.snap b/app/components/Views/Asset/__snapshots__/index.test.js.snap index 1dad64a7f75b..75e74367ec46 100644 --- a/app/components/Views/Asset/__snapshots__/index.test.js.snap +++ b/app/components/Views/Asset/__snapshots__/index.test.js.snap @@ -407,7 +407,7 @@ exports[`Asset Multichain Functionality should exclude mixed token/SOL transacti style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -430,7 +430,7 @@ exports[`Asset Multichain Functionality should exclude mixed token/SOL transacti style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -809,7 +809,7 @@ exports[`Asset Multichain Functionality should exclude mixed token/SOL transacti style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -823,7 +823,7 @@ exports[`Asset Multichain Functionality should exclude mixed token/SOL transacti style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -838,7 +838,7 @@ exports[`Asset Multichain Functionality should exclude mixed token/SOL transacti style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -850,7 +850,7 @@ exports[`Asset Multichain Functionality should exclude mixed token/SOL transacti style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -891,7 +891,7 @@ exports[`Asset Multichain Functionality should exclude mixed token/SOL transacti style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -984,7 +984,7 @@ exports[`Asset Multichain Functionality should exclude mixed token/SOL transacti style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -1014,7 +1014,7 @@ exports[`Asset Multichain Functionality should exclude mixed token/SOL transacti style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -1044,7 +1044,7 @@ exports[`Asset Multichain Functionality should exclude mixed token/SOL transacti style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -1074,7 +1074,7 @@ exports[`Asset Multichain Functionality should exclude mixed token/SOL transacti style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -1104,7 +1104,7 @@ exports[`Asset Multichain Functionality should exclude mixed token/SOL transacti style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -1134,7 +1134,7 @@ exports[`Asset Multichain Functionality should exclude mixed token/SOL transacti style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -1252,7 +1252,7 @@ exports[`Asset Multichain Functionality should exclude mixed token/SOL transacti { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1365,7 +1365,7 @@ exports[`Asset Multichain Functionality should exclude mixed token/SOL transacti { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1478,7 +1478,7 @@ exports[`Asset Multichain Functionality should exclude mixed token/SOL transacti { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1591,7 +1591,7 @@ exports[`Asset Multichain Functionality should exclude mixed token/SOL transacti { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -1623,7 +1623,7 @@ exports[`Asset Multichain Functionality should exclude mixed token/SOL transacti style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1820,7 +1820,7 @@ exports[`Asset Multichain Functionality should exclude mixed token/SOL transacti style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1835,7 +1835,7 @@ exports[`Asset Multichain Functionality should exclude mixed token/SOL transacti style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "fontWeight": "400", "letterSpacing": 0, @@ -1879,7 +1879,7 @@ exports[`Asset Multichain Functionality should exclude mixed token/SOL transacti style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1914,7 +1914,7 @@ exports[`Asset Multichain Functionality should exclude mixed token/SOL transacti style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1998,7 +1998,7 @@ exports[`Asset Multichain Functionality should exclude mixed token/SOL transacti style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2194,7 +2194,7 @@ exports[`Asset Multichain Functionality should exclude transactions with empty a style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2217,7 +2217,7 @@ exports[`Asset Multichain Functionality should exclude transactions with empty a style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -2596,7 +2596,7 @@ exports[`Asset Multichain Functionality should exclude transactions with empty a style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2610,7 +2610,7 @@ exports[`Asset Multichain Functionality should exclude transactions with empty a style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -2625,7 +2625,7 @@ exports[`Asset Multichain Functionality should exclude transactions with empty a style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2637,7 +2637,7 @@ exports[`Asset Multichain Functionality should exclude transactions with empty a style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2678,7 +2678,7 @@ exports[`Asset Multichain Functionality should exclude transactions with empty a style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2771,7 +2771,7 @@ exports[`Asset Multichain Functionality should exclude transactions with empty a style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -2801,7 +2801,7 @@ exports[`Asset Multichain Functionality should exclude transactions with empty a style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -2831,7 +2831,7 @@ exports[`Asset Multichain Functionality should exclude transactions with empty a style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -2861,7 +2861,7 @@ exports[`Asset Multichain Functionality should exclude transactions with empty a style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -2891,7 +2891,7 @@ exports[`Asset Multichain Functionality should exclude transactions with empty a style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -2921,7 +2921,7 @@ exports[`Asset Multichain Functionality should exclude transactions with empty a style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -3039,7 +3039,7 @@ exports[`Asset Multichain Functionality should exclude transactions with empty a { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3152,7 +3152,7 @@ exports[`Asset Multichain Functionality should exclude transactions with empty a { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3265,7 +3265,7 @@ exports[`Asset Multichain Functionality should exclude transactions with empty a { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3378,7 +3378,7 @@ exports[`Asset Multichain Functionality should exclude transactions with empty a { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -3410,7 +3410,7 @@ exports[`Asset Multichain Functionality should exclude transactions with empty a style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3607,7 +3607,7 @@ exports[`Asset Multichain Functionality should exclude transactions with empty a style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3622,7 +3622,7 @@ exports[`Asset Multichain Functionality should exclude transactions with empty a style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "fontWeight": "400", "letterSpacing": 0, @@ -3666,7 +3666,7 @@ exports[`Asset Multichain Functionality should exclude transactions with empty a style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3701,7 +3701,7 @@ exports[`Asset Multichain Functionality should exclude transactions with empty a style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3785,7 +3785,7 @@ exports[`Asset Multichain Functionality should exclude transactions with empty a style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3981,7 +3981,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4004,7 +4004,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4383,7 +4383,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4397,7 +4397,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -4412,7 +4412,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4424,7 +4424,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4465,7 +4465,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4558,7 +4558,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -4588,7 +4588,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -4618,7 +4618,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -4648,7 +4648,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -4678,7 +4678,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -4708,7 +4708,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -4826,7 +4826,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4939,7 +4939,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -5052,7 +5052,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -5165,7 +5165,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -5197,7 +5197,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -5363,7 +5363,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5378,7 +5378,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "fontWeight": "400", "letterSpacing": 0, @@ -5422,7 +5422,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -5459,7 +5459,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5486,7 +5486,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -5529,7 +5529,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -5613,7 +5613,7 @@ exports[`Asset Multichain Functionality should filter SPL token transactions cor style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5809,7 +5809,7 @@ exports[`Asset Multichain Functionality should filter native SOL transactions co style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5832,7 +5832,7 @@ exports[`Asset Multichain Functionality should filter native SOL transactions co style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -6211,7 +6211,7 @@ exports[`Asset Multichain Functionality should filter native SOL transactions co style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6225,7 +6225,7 @@ exports[`Asset Multichain Functionality should filter native SOL transactions co style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -6240,7 +6240,7 @@ exports[`Asset Multichain Functionality should filter native SOL transactions co style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6252,7 +6252,7 @@ exports[`Asset Multichain Functionality should filter native SOL transactions co style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6293,7 +6293,7 @@ exports[`Asset Multichain Functionality should filter native SOL transactions co style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -6386,7 +6386,7 @@ exports[`Asset Multichain Functionality should filter native SOL transactions co style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -6416,7 +6416,7 @@ exports[`Asset Multichain Functionality should filter native SOL transactions co style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -6446,7 +6446,7 @@ exports[`Asset Multichain Functionality should filter native SOL transactions co style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -6476,7 +6476,7 @@ exports[`Asset Multichain Functionality should filter native SOL transactions co style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -6506,7 +6506,7 @@ exports[`Asset Multichain Functionality should filter native SOL transactions co style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -6536,7 +6536,7 @@ exports[`Asset Multichain Functionality should filter native SOL transactions co style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -6654,7 +6654,7 @@ exports[`Asset Multichain Functionality should filter native SOL transactions co { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -6767,7 +6767,7 @@ exports[`Asset Multichain Functionality should filter native SOL transactions co { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -6880,7 +6880,7 @@ exports[`Asset Multichain Functionality should filter native SOL transactions co { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -6993,7 +6993,7 @@ exports[`Asset Multichain Functionality should filter native SOL transactions co { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -7025,7 +7025,7 @@ exports[`Asset Multichain Functionality should filter native SOL transactions co style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -7222,7 +7222,7 @@ exports[`Asset Multichain Functionality should filter native SOL transactions co style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -7237,7 +7237,7 @@ exports[`Asset Multichain Functionality should filter native SOL transactions co style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "fontWeight": "400", "letterSpacing": 0, @@ -7281,7 +7281,7 @@ exports[`Asset Multichain Functionality should filter native SOL transactions co style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -7316,7 +7316,7 @@ exports[`Asset Multichain Functionality should filter native SOL transactions co style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -7400,7 +7400,7 @@ exports[`Asset Multichain Functionality should filter native SOL transactions co style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -7596,7 +7596,7 @@ exports[`Asset Multichain Functionality should handle state with no multichain t style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -7619,7 +7619,7 @@ exports[`Asset Multichain Functionality should handle state with no multichain t style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -7998,7 +7998,7 @@ exports[`Asset Multichain Functionality should handle state with no multichain t style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -8012,7 +8012,7 @@ exports[`Asset Multichain Functionality should handle state with no multichain t style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -8027,7 +8027,7 @@ exports[`Asset Multichain Functionality should handle state with no multichain t style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -8039,7 +8039,7 @@ exports[`Asset Multichain Functionality should handle state with no multichain t style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -8080,7 +8080,7 @@ exports[`Asset Multichain Functionality should handle state with no multichain t style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -8173,7 +8173,7 @@ exports[`Asset Multichain Functionality should handle state with no multichain t style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -8203,7 +8203,7 @@ exports[`Asset Multichain Functionality should handle state with no multichain t style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -8233,7 +8233,7 @@ exports[`Asset Multichain Functionality should handle state with no multichain t style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -8263,7 +8263,7 @@ exports[`Asset Multichain Functionality should handle state with no multichain t style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -8293,7 +8293,7 @@ exports[`Asset Multichain Functionality should handle state with no multichain t style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -8323,7 +8323,7 @@ exports[`Asset Multichain Functionality should handle state with no multichain t style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -8441,7 +8441,7 @@ exports[`Asset Multichain Functionality should handle state with no multichain t { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -8554,7 +8554,7 @@ exports[`Asset Multichain Functionality should handle state with no multichain t { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -8667,7 +8667,7 @@ exports[`Asset Multichain Functionality should handle state with no multichain t { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -8780,7 +8780,7 @@ exports[`Asset Multichain Functionality should handle state with no multichain t { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -8812,7 +8812,7 @@ exports[`Asset Multichain Functionality should handle state with no multichain t style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -9009,7 +9009,7 @@ exports[`Asset Multichain Functionality should handle state with no multichain t style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9024,7 +9024,7 @@ exports[`Asset Multichain Functionality should handle state with no multichain t style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "fontWeight": "400", "letterSpacing": 0, @@ -9068,7 +9068,7 @@ exports[`Asset Multichain Functionality should handle state with no multichain t style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -9103,7 +9103,7 @@ exports[`Asset Multichain Functionality should handle state with no multichain t style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -9187,7 +9187,7 @@ exports[`Asset Multichain Functionality should handle state with no multichain t style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9383,7 +9383,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9406,7 +9406,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -9785,7 +9785,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9799,7 +9799,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -9814,7 +9814,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9826,7 +9826,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9867,7 +9867,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -9960,7 +9960,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -9990,7 +9990,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -10020,7 +10020,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -10050,7 +10050,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -10080,7 +10080,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -10110,7 +10110,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -10228,7 +10228,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -10341,7 +10341,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -10454,7 +10454,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -10567,7 +10567,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -10599,7 +10599,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -10765,7 +10765,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -10780,7 +10780,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "fontWeight": "400", "letterSpacing": 0, @@ -10824,7 +10824,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -10861,7 +10861,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -10888,7 +10888,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -10931,7 +10931,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -11015,7 +11015,7 @@ exports[`Asset Multichain Functionality should handle unknown SPL token filterin style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -11211,7 +11211,7 @@ exports[`Asset Multichain Functionality should render EVM assets with Transactio style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -11234,7 +11234,7 @@ exports[`Asset Multichain Functionality should render EVM assets with Transactio style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -11740,7 +11740,7 @@ exports[`Asset Multichain Functionality should render non-EVM assets with Multic style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -11763,7 +11763,7 @@ exports[`Asset Multichain Functionality should render non-EVM assets with Multic style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -12142,7 +12142,7 @@ exports[`Asset Multichain Functionality should render non-EVM assets with Multic style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -12156,7 +12156,7 @@ exports[`Asset Multichain Functionality should render non-EVM assets with Multic style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -12171,7 +12171,7 @@ exports[`Asset Multichain Functionality should render non-EVM assets with Multic style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -12183,7 +12183,7 @@ exports[`Asset Multichain Functionality should render non-EVM assets with Multic style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -12224,7 +12224,7 @@ exports[`Asset Multichain Functionality should render non-EVM assets with Multic style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -12317,7 +12317,7 @@ exports[`Asset Multichain Functionality should render non-EVM assets with Multic style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -12347,7 +12347,7 @@ exports[`Asset Multichain Functionality should render non-EVM assets with Multic style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -12377,7 +12377,7 @@ exports[`Asset Multichain Functionality should render non-EVM assets with Multic style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -12407,7 +12407,7 @@ exports[`Asset Multichain Functionality should render non-EVM assets with Multic style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -12437,7 +12437,7 @@ exports[`Asset Multichain Functionality should render non-EVM assets with Multic style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -12467,7 +12467,7 @@ exports[`Asset Multichain Functionality should render non-EVM assets with Multic style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -12585,7 +12585,7 @@ exports[`Asset Multichain Functionality should render non-EVM assets with Multic { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -12698,7 +12698,7 @@ exports[`Asset Multichain Functionality should render non-EVM assets with Multic { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -12811,7 +12811,7 @@ exports[`Asset Multichain Functionality should render non-EVM assets with Multic { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -12924,7 +12924,7 @@ exports[`Asset Multichain Functionality should render non-EVM assets with Multic { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -12956,7 +12956,7 @@ exports[`Asset Multichain Functionality should render non-EVM assets with Multic style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -13153,7 +13153,7 @@ exports[`Asset Multichain Functionality should render non-EVM assets with Multic style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -13168,7 +13168,7 @@ exports[`Asset Multichain Functionality should render non-EVM assets with Multic style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "fontWeight": "400", "letterSpacing": 0, @@ -13212,7 +13212,7 @@ exports[`Asset Multichain Functionality should render non-EVM assets with Multic style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -13247,7 +13247,7 @@ exports[`Asset Multichain Functionality should render non-EVM assets with Multic style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -13331,7 +13331,7 @@ exports[`Asset Multichain Functionality should render non-EVM assets with Multic style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -13527,7 +13527,7 @@ exports[`Asset Multichain Functionality should sort filtered transactions by tim style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -13550,7 +13550,7 @@ exports[`Asset Multichain Functionality should sort filtered transactions by tim style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -13929,7 +13929,7 @@ exports[`Asset Multichain Functionality should sort filtered transactions by tim style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -13943,7 +13943,7 @@ exports[`Asset Multichain Functionality should sort filtered transactions by tim style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -13958,7 +13958,7 @@ exports[`Asset Multichain Functionality should sort filtered transactions by tim style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -13970,7 +13970,7 @@ exports[`Asset Multichain Functionality should sort filtered transactions by tim style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -14011,7 +14011,7 @@ exports[`Asset Multichain Functionality should sort filtered transactions by tim style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -14104,7 +14104,7 @@ exports[`Asset Multichain Functionality should sort filtered transactions by tim style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -14134,7 +14134,7 @@ exports[`Asset Multichain Functionality should sort filtered transactions by tim style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -14164,7 +14164,7 @@ exports[`Asset Multichain Functionality should sort filtered transactions by tim style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -14194,7 +14194,7 @@ exports[`Asset Multichain Functionality should sort filtered transactions by tim style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -14224,7 +14224,7 @@ exports[`Asset Multichain Functionality should sort filtered transactions by tim style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -14254,7 +14254,7 @@ exports[`Asset Multichain Functionality should sort filtered transactions by tim style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 3, "lineHeight": 22, @@ -14372,7 +14372,7 @@ exports[`Asset Multichain Functionality should sort filtered transactions by tim { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -14485,7 +14485,7 @@ exports[`Asset Multichain Functionality should sort filtered transactions by tim { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -14598,7 +14598,7 @@ exports[`Asset Multichain Functionality should sort filtered transactions by tim { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -14711,7 +14711,7 @@ exports[`Asset Multichain Functionality should sort filtered transactions by tim { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -14743,7 +14743,7 @@ exports[`Asset Multichain Functionality should sort filtered transactions by tim style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -14940,7 +14940,7 @@ exports[`Asset Multichain Functionality should sort filtered transactions by tim style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -14955,7 +14955,7 @@ exports[`Asset Multichain Functionality should sort filtered transactions by tim style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "fontWeight": "400", "letterSpacing": 0, @@ -14999,7 +14999,7 @@ exports[`Asset Multichain Functionality should sort filtered transactions by tim style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -15034,7 +15034,7 @@ exports[`Asset Multichain Functionality should sort filtered transactions by tim style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -15118,7 +15118,7 @@ exports[`Asset Multichain Functionality should sort filtered transactions by tim style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -15314,7 +15314,7 @@ exports[`Asset Multichain Functionality should use EVM transactions for EVM acco style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -15337,7 +15337,7 @@ exports[`Asset Multichain Functionality should use EVM transactions for EVM acco style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/Views/AssetDetails/AssetDetailsActions/__snapshots__/AssetDetailsActions.test.tsx.snap b/app/components/Views/AssetDetails/AssetDetailsActions/__snapshots__/AssetDetailsActions.test.tsx.snap index 53339812f71b..b28283a2d342 100644 --- a/app/components/Views/AssetDetails/AssetDetailsActions/__snapshots__/AssetDetailsActions.test.tsx.snap +++ b/app/components/Views/AssetDetails/AssetDetailsActions/__snapshots__/AssetDetailsActions.test.tsx.snap @@ -107,7 +107,7 @@ exports[`AssetDetailsActions should render correctly 1`] = ` { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -220,7 +220,7 @@ exports[`AssetDetailsActions should render correctly 1`] = ` { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -333,7 +333,7 @@ exports[`AssetDetailsActions should render correctly 1`] = ` { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -446,7 +446,7 @@ exports[`AssetDetailsActions should render correctly 1`] = ` { "color": "#121314", "flexShrink": 0, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/Views/AssetDetails/__snapshots__/AssetsDetails.test.tsx.snap b/app/components/Views/AssetDetails/__snapshots__/AssetsDetails.test.tsx.snap index 257dd8ccff86..e631e7cb8bc1 100644 --- a/app/components/Views/AssetDetails/__snapshots__/AssetsDetails.test.tsx.snap +++ b/app/components/Views/AssetDetails/__snapshots__/AssetsDetails.test.tsx.snap @@ -16,7 +16,7 @@ exports[`AssetDetails renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "marginTop": 32, }, @@ -132,7 +132,7 @@ exports[`AssetDetails renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, } } @@ -145,7 +145,7 @@ exports[`AssetDetails renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "marginTop": 32, }, @@ -168,7 +168,7 @@ exports[`AssetDetails renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, } } @@ -181,7 +181,7 @@ exports[`AssetDetails renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "marginTop": 32, }, @@ -214,7 +214,7 @@ exports[`AssetDetails renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, } } @@ -251,7 +251,7 @@ exports[`AssetDetails renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "marginTop": 32, }, @@ -266,7 +266,7 @@ exports[`AssetDetails renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, }, { @@ -284,7 +284,7 @@ exports[`AssetDetails renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "marginTop": 32, }, @@ -299,7 +299,7 @@ exports[`AssetDetails renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, }, { @@ -317,7 +317,7 @@ exports[`AssetDetails renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "marginTop": 32, }, @@ -332,7 +332,7 @@ exports[`AssetDetails renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, }, { @@ -365,7 +365,7 @@ exports[`AssetDetails renders correctly 1`] = ` style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, } } diff --git a/app/components/Views/Browser/__snapshots__/MaxBrowserTabsModal.test.tsx.snap b/app/components/Views/Browser/__snapshots__/MaxBrowserTabsModal.test.tsx.snap index f836504be81f..6aab20cbc659 100644 --- a/app/components/Views/Browser/__snapshots__/MaxBrowserTabsModal.test.tsx.snap +++ b/app/components/Views/Browser/__snapshots__/MaxBrowserTabsModal.test.tsx.snap @@ -167,7 +167,7 @@ exports[`MaxBrowserTabsModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -198,7 +198,7 @@ exports[`MaxBrowserTabsModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -234,7 +234,7 @@ exports[`MaxBrowserTabsModal should render correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/BrowserTab/__snapshots__/index.test.tsx.snap b/app/components/Views/BrowserTab/__snapshots__/index.test.tsx.snap index 4003ff63656e..f3b47c689bd7 100644 --- a/app/components/Views/BrowserTab/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/BrowserTab/__snapshots__/index.test.tsx.snap @@ -92,7 +92,7 @@ exports[`BrowserTab render Browser 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "height": 44, "margin": 0, @@ -132,7 +132,7 @@ exports[`BrowserTab render Browser 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -597,7 +597,7 @@ exports[`BrowserTab render Browser 1`] = ` "alignSelf": "center", "color": "#686e7d", "flex": 0, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 15, "textAlign": "center", } diff --git a/app/components/Views/BrowserTab/components/IpfsBanner/__snapshots__/index.test.tsx.snap b/app/components/Views/BrowserTab/components/IpfsBanner/__snapshots__/index.test.tsx.snap index 147c137565cd..8fdeed0c9108 100644 --- a/app/components/Views/BrowserTab/components/IpfsBanner/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/BrowserTab/components/IpfsBanner/__snapshots__/index.test.tsx.snap @@ -61,7 +61,7 @@ exports[`IpfsBanner should render banner correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -75,7 +75,7 @@ exports[`IpfsBanner should render banner correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -89,7 +89,7 @@ exports[`IpfsBanner should render banner correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -106,7 +106,7 @@ exports[`IpfsBanner should render banner correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -126,7 +126,7 @@ exports[`IpfsBanner should render banner correctly 1`] = ` { "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -139,7 +139,7 @@ exports[`IpfsBanner should render banner correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/BrowserTab/components/PhishingModal/__snapshots__/index.test.tsx.snap b/app/components/Views/BrowserTab/components/PhishingModal/__snapshots__/index.test.tsx.snap index 75b5eede807a..1b5a50acd485 100644 --- a/app/components/Views/BrowserTab/components/PhishingModal/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/BrowserTab/components/PhishingModal/__snapshots__/index.test.tsx.snap @@ -150,7 +150,7 @@ exports[`PhishingModal should match snapshot when showPhishingModal is true 1`] style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "marginBottom": 16, "textAlign": "left", @@ -163,7 +163,7 @@ exports[`PhishingModal should match snapshot when showPhishingModal is true 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "marginBottom": 20, } @@ -175,7 +175,7 @@ exports[`PhishingModal should match snapshot when showPhishingModal is true 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "marginBottom": 20, } @@ -247,7 +247,7 @@ exports[`PhishingModal should match snapshot when showPhishingModal is true 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "marginLeft": 12, } @@ -306,7 +306,7 @@ exports[`PhishingModal should match snapshot when showPhishingModal is true 1`] style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "marginLeft": 12, } @@ -342,7 +342,7 @@ exports[`PhishingModal should match snapshot when showPhishingModal is true 1`] style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/ChangeInSimulationModal/__snapshots__/ChangeInSimulationModal.test.tsx.snap b/app/components/Views/ChangeInSimulationModal/__snapshots__/ChangeInSimulationModal.test.tsx.snap index 735af0744db3..b88115b8a02a 100644 --- a/app/components/Views/ChangeInSimulationModal/__snapshots__/ChangeInSimulationModal.test.tsx.snap +++ b/app/components/Views/ChangeInSimulationModal/__snapshots__/ChangeInSimulationModal.test.tsx.snap @@ -46,7 +46,7 @@ exports[`ChangeInSimulationModal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -69,7 +69,7 @@ exports[`ChangeInSimulationModal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -115,7 +115,7 @@ exports[`ChangeInSimulationModal render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -154,7 +154,7 @@ exports[`ChangeInSimulationModal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/ChoosePassword/FoxRiveLoaderAnimation/index.styles.ts b/app/components/Views/ChoosePassword/FoxRiveLoaderAnimation/index.styles.ts index 7d83b3c0e010..9b93d13e229d 100644 --- a/app/components/Views/ChoosePassword/FoxRiveLoaderAnimation/index.styles.ts +++ b/app/components/Views/ChoosePassword/FoxRiveLoaderAnimation/index.styles.ts @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../styles/common'; import { Theme } from '../../../../util/theme/models'; import { getScreenDimensions } from '../../../../util/onboarding'; @@ -46,7 +47,7 @@ const createStyles = ( textTitle: { textAlign: 'center', fontSize: 28, - fontWeight: '600', + ...fontStyles.medium, color: colors.text.default, lineHeight: 36, paddingHorizontal: 40, diff --git a/app/components/Views/ChoosePassword/__snapshots__/index.test.tsx.snap b/app/components/Views/ChoosePassword/__snapshots__/index.test.tsx.snap index bc353fc7c744..a4452a88afc4 100644 --- a/app/components/Views/ChoosePassword/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/ChoosePassword/__snapshots__/index.test.tsx.snap @@ -90,7 +90,7 @@ exports[`ChoosePassword render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -104,7 +104,7 @@ exports[`ChoosePassword render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -128,7 +128,7 @@ exports[`ChoosePassword render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -210,7 +210,7 @@ exports[`ChoosePassword render matches snapshot 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -255,7 +255,7 @@ exports[`ChoosePassword render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -279,7 +279,7 @@ exports[`ChoosePassword render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -362,7 +362,7 @@ exports[`ChoosePassword render matches snapshot 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -459,7 +459,7 @@ exports[`ChoosePassword render matches snapshot 1`] = ` "color": "#121314", "flexDirection": "row", "flexWrap": "wrap", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "gap": 1, "justifyContent": "flex-start", @@ -477,7 +477,7 @@ exports[`ChoosePassword render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -489,7 +489,7 @@ exports[`ChoosePassword render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -503,7 +503,7 @@ exports[`ChoosePassword render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -557,7 +557,7 @@ exports[`ChoosePassword render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/CollectibleView/__snapshots__/index.test.tsx.snap b/app/components/Views/CollectibleView/__snapshots__/index.test.tsx.snap index 4fa931a8adf4..7f664ea5abe9 100644 --- a/app/components/Views/CollectibleView/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/CollectibleView/__snapshots__/index.test.tsx.snap @@ -77,14 +77,14 @@ exports[`CollectibleView Snapshot renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -122,7 +122,7 @@ exports[`CollectibleView Snapshot renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -215,7 +215,7 @@ exports[`CollectibleView Snapshot renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -297,14 +297,14 @@ exports[`CollectibleView Snapshot renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, { @@ -350,7 +350,7 @@ exports[`CollectibleView Snapshot renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -440,7 +440,7 @@ exports[`CollectibleView Snapshot renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 15, "marginLeft": 8, } diff --git a/app/components/Views/ConnectQRHardware/__snapshots__/index.test.tsx.snap b/app/components/Views/ConnectQRHardware/__snapshots__/index.test.tsx.snap index 649165263702..01eb8976fd6a 100644 --- a/app/components/Views/ConnectQRHardware/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/ConnectQRHardware/__snapshots__/index.test.tsx.snap @@ -113,7 +113,7 @@ exports[`ConnectQRHardware renders correctly to match snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 24, "marginBottom": 20, "marginTop": 40, @@ -135,7 +135,7 @@ exports[`ConnectQRHardware renders correctly to match snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "marginBottom": 24, } @@ -149,13 +149,13 @@ exports[`ConnectQRHardware renders correctly to match snapshot 1`] = ` [ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "marginBottom": 24, }, { "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, ] } @@ -166,7 +166,7 @@ exports[`ConnectQRHardware renders correctly to match snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "marginBottom": 24, } @@ -199,13 +199,13 @@ exports[`ConnectQRHardware renders correctly to match snapshot 1`] = ` [ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "marginBottom": 24, }, { "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, { "marginRight": 16, @@ -221,13 +221,13 @@ exports[`ConnectQRHardware renders correctly to match snapshot 1`] = ` [ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "marginBottom": 24, }, { "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, ] } @@ -260,13 +260,13 @@ exports[`ConnectQRHardware renders correctly to match snapshot 1`] = ` [ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "marginBottom": 24, }, { "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, { "marginRight": 16, @@ -282,13 +282,13 @@ exports[`ConnectQRHardware renders correctly to match snapshot 1`] = ` [ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "marginBottom": 24, }, { "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, ] } @@ -342,7 +342,7 @@ exports[`ConnectQRHardware renders correctly to match snapshot 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, diff --git a/app/components/Views/DataCollectionModal/__snapshots__/index.test.tsx.snap b/app/components/Views/DataCollectionModal/__snapshots__/index.test.tsx.snap index 499f19ff4a2c..61b168a09468 100644 --- a/app/components/Views/DataCollectionModal/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/DataCollectionModal/__snapshots__/index.test.tsx.snap @@ -158,7 +158,7 @@ exports[`DataCollectionModal should render expected snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -207,7 +207,7 @@ exports[`DataCollectionModal should render expected snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/DetectedTokens/__snapshots__/index.test.tsx.snap b/app/components/Views/DetectedTokens/__snapshots__/index.test.tsx.snap index 5bccc51dfe6d..fa131e374b02 100644 --- a/app/components/Views/DetectedTokens/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/DetectedTokens/__snapshots__/index.test.tsx.snap @@ -6,7 +6,7 @@ exports[`DetectedTokens Component matches snapshot when no detected tokens 1`] = style={ { "color": "black", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, "paddingVertical": 16, "textAlign": "center", @@ -93,7 +93,7 @@ exports[`DetectedTokens Component matches snapshot when no detected tokens 1`] = null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -158,7 +158,7 @@ exports[`DetectedTokens Component matches snapshot when no detected tokens 1`] = }, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -186,7 +186,7 @@ exports[`DetectedTokens Component renders correctly with detected tokens 1`] = ` style={ { "color": "black", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, "paddingVertical": 16, "textAlign": "center", @@ -355,7 +355,7 @@ exports[`DetectedTokens Component renders correctly with detected tokens 1`] = ` style={ { "color": "black", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, "marginBottom": 4, } @@ -375,7 +375,7 @@ exports[`DetectedTokens Component renders correctly with detected tokens 1`] = ` style={ { "color": undefined, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -396,7 +396,7 @@ exports[`DetectedTokens Component renders correctly with detected tokens 1`] = ` style={ { "color": "blue", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -442,7 +442,7 @@ exports[`DetectedTokens Component renders correctly with detected tokens 1`] = ` style={ { "color": "black", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -610,7 +610,7 @@ exports[`DetectedTokens Component renders correctly with detected tokens 1`] = ` style={ { "color": "black", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, "marginBottom": 4, } @@ -630,7 +630,7 @@ exports[`DetectedTokens Component renders correctly with detected tokens 1`] = ` style={ { "color": undefined, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -651,7 +651,7 @@ exports[`DetectedTokens Component renders correctly with detected tokens 1`] = ` style={ { "color": "blue", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -697,7 +697,7 @@ exports[`DetectedTokens Component renders correctly with detected tokens 1`] = ` style={ { "color": "black", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -797,7 +797,7 @@ exports[`DetectedTokens Component renders correctly with detected tokens 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -859,7 +859,7 @@ exports[`DetectedTokens Component renders correctly with detected tokens 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, diff --git a/app/components/Views/DetectedTokens/components/__snapshots__/Token.test.tsx.snap b/app/components/Views/DetectedTokens/components/__snapshots__/Token.test.tsx.snap index f42a6cbdcaeb..f5e24cf7bb9b 100644 --- a/app/components/Views/DetectedTokens/components/__snapshots__/Token.test.tsx.snap +++ b/app/components/Views/DetectedTokens/components/__snapshots__/Token.test.tsx.snap @@ -112,7 +112,7 @@ exports[`Token Component matches snapshot when token is not selected 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, "marginBottom": 4, } @@ -132,7 +132,7 @@ exports[`Token Component matches snapshot when token is not selected 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -153,7 +153,7 @@ exports[`Token Component matches snapshot when token is not selected 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -199,7 +199,7 @@ exports[`Token Component matches snapshot when token is not selected 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -213,7 +213,7 @@ exports[`Token Component matches snapshot when token is not selected 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -379,7 +379,7 @@ exports[`Token Component matches snapshot when token is selected 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, "marginBottom": 4, } @@ -399,7 +399,7 @@ exports[`Token Component matches snapshot when token is selected 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -420,7 +420,7 @@ exports[`Token Component matches snapshot when token is selected 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -466,7 +466,7 @@ exports[`Token Component matches snapshot when token is selected 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -480,7 +480,7 @@ exports[`Token Component matches snapshot when token is selected 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -646,7 +646,7 @@ exports[`Token Component renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, "marginBottom": 4, } @@ -666,7 +666,7 @@ exports[`Token Component renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -687,7 +687,7 @@ exports[`Token Component renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -733,7 +733,7 @@ exports[`Token Component renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -747,7 +747,7 @@ exports[`Token Component renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -913,7 +913,7 @@ exports[`Token Component renders correctly with token chainId 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, "marginBottom": 4, } @@ -933,7 +933,7 @@ exports[`Token Component renders correctly with token chainId 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -954,7 +954,7 @@ exports[`Token Component renders correctly with token chainId 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -1000,7 +1000,7 @@ exports[`Token Component renders correctly with token chainId 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -1014,7 +1014,7 @@ exports[`Token Component renders correctly with token chainId 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } diff --git a/app/components/Views/EditAccountName/__snapshots__/EditAccountName.test.tsx.snap b/app/components/Views/EditAccountName/__snapshots__/EditAccountName.test.tsx.snap index a88f461cae8d..fe5e55cce9ba 100644 --- a/app/components/Views/EditAccountName/__snapshots__/EditAccountName.test.tsx.snap +++ b/app/components/Views/EditAccountName/__snapshots__/EditAccountName.test.tsx.snap @@ -32,7 +32,7 @@ exports[`EditAccountName should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -105,7 +105,7 @@ exports[`EditAccountName should render correctly 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -135,7 +135,7 @@ exports[`EditAccountName should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -208,7 +208,7 @@ exports[`EditAccountName should render correctly 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 38, @@ -264,7 +264,7 @@ exports[`EditAccountName should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -304,7 +304,7 @@ exports[`EditAccountName should render correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/EnterPasswordSimple/__snapshots__/index.test.tsx.snap b/app/components/Views/EnterPasswordSimple/__snapshots__/index.test.tsx.snap index ecc6101c9041..448f228fbd6c 100644 --- a/app/components/Views/EnterPasswordSimple/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/EnterPasswordSimple/__snapshots__/index.test.tsx.snap @@ -71,7 +71,7 @@ exports[`EnterPasswordSimple should render correctly 1`] = ` style={ { "color": "black", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "marginBottom": 15, } @@ -91,6 +91,7 @@ exports[`EnterPasswordSimple should render correctly 1`] = ` "borderRadius": 5, "borderWidth": 2, "color": "black", + "fontFamily": "Geist-Regular", "padding": 10, } } @@ -138,7 +139,7 @@ exports[`EnterPasswordSimple should render correctly 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, diff --git a/app/components/Views/EnterPasswordSimple/index.js b/app/components/Views/EnterPasswordSimple/index.js index 728cfbdc9097..f30b623f1731 100644 --- a/app/components/Views/EnterPasswordSimple/index.js +++ b/app/components/Views/EnterPasswordSimple/index.js @@ -17,7 +17,6 @@ import { strings } from '../../../../locales/i18n'; import { getNavigationOptionsTitle } from '../../UI/Navbar'; import { passwordRequirementsMet } from '../../../util/password'; import { ThemeContext, mockTheme } from '../../../util/theme'; - const createStyles = (colors) => StyleSheet.create({ mainWrapper: { @@ -34,6 +33,7 @@ const createStyles = (colors) => borderColor: colors.border.default, padding: 10, color: colors.text.default, + ...fontStyles.normal, }, ctaWrapper: { marginTop: 10, diff --git a/app/components/Views/GasEducationCarousel/__snapshots__/index.test.tsx.snap b/app/components/Views/GasEducationCarousel/__snapshots__/index.test.tsx.snap index 6920d907012a..6b555ac72224 100644 --- a/app/components/Views/GasEducationCarousel/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/GasEducationCarousel/__snapshots__/index.test.tsx.snap @@ -143,14 +143,14 @@ exports[`GasEducationCarousel should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, { @@ -194,7 +194,7 @@ exports[`GasEducationCarousel should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -242,7 +242,7 @@ exports[`GasEducationCarousel should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -290,14 +290,14 @@ exports[`GasEducationCarousel should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, diff --git a/app/components/Views/Identity/TurnOnBackupAndSync/__snapshots__/TurnOnBackupAndSync.test.tsx.snap b/app/components/Views/Identity/TurnOnBackupAndSync/__snapshots__/TurnOnBackupAndSync.test.tsx.snap index 54c4f1fe60b1..1cc9b9d31363 100644 --- a/app/components/Views/Identity/TurnOnBackupAndSync/__snapshots__/TurnOnBackupAndSync.test.tsx.snap +++ b/app/components/Views/Identity/TurnOnBackupAndSync/__snapshots__/TurnOnBackupAndSync.test.tsx.snap @@ -20,7 +20,7 @@ exports[`TurnOnBackupAndSync renders correctly 1`] = ` { "alignSelf": "center", "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -60,7 +60,7 @@ exports[`TurnOnBackupAndSync renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -76,7 +76,7 @@ exports[`TurnOnBackupAndSync renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -92,7 +92,7 @@ exports[`TurnOnBackupAndSync renders correctly 1`] = ` { "color": "#686e7d", "flexDirection": "column", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -106,7 +106,7 @@ exports[`TurnOnBackupAndSync renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -158,7 +158,7 @@ exports[`TurnOnBackupAndSync renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -197,7 +197,7 @@ exports[`TurnOnBackupAndSync renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/ImportFromSecretRecoveryPhrase/__snapshots__/index.test.tsx.snap b/app/components/Views/ImportFromSecretRecoveryPhrase/__snapshots__/index.test.tsx.snap index b8c4a09f9307..03728c96b9c5 100644 --- a/app/components/Views/ImportFromSecretRecoveryPhrase/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/ImportFromSecretRecoveryPhrase/__snapshots__/index.test.tsx.snap @@ -441,7 +441,7 @@ exports[`ImportFromSecretRecoveryPhrase Import a wallet UI render matches snapsh style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -455,7 +455,7 @@ exports[`ImportFromSecretRecoveryPhrase Import a wallet UI render matches snapsh style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -486,7 +486,7 @@ exports[`ImportFromSecretRecoveryPhrase Import a wallet UI render matches snapsh style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -625,7 +625,7 @@ exports[`ImportFromSecretRecoveryPhrase Import a wallet UI render matches snapsh "borderWidth": 1, "color": "#686e7d", "display": "flex", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 66, @@ -718,7 +718,7 @@ exports[`ImportFromSecretRecoveryPhrase Import a wallet UI render matches snapsh "borderWidth": 1, "color": "#686e7d", "display": "flex", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 66, @@ -748,7 +748,7 @@ exports[`ImportFromSecretRecoveryPhrase Import a wallet UI render matches snapsh { "alignSelf": "flex-end", "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -799,7 +799,7 @@ exports[`ImportFromSecretRecoveryPhrase Import a wallet UI render matches snapsh style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/ImportPrivateKey/__snapshots__/index.test.tsx.snap b/app/components/Views/ImportPrivateKey/__snapshots__/index.test.tsx.snap index 79cec664075b..0a92274d79b2 100644 --- a/app/components/Views/ImportPrivateKey/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/ImportPrivateKey/__snapshots__/index.test.tsx.snap @@ -453,7 +453,7 @@ exports[`ImportPrivateKey render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 32, "justifyContent": "center", "letterSpacing": 0, @@ -469,7 +469,7 @@ exports[`ImportPrivateKey render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -484,7 +484,7 @@ exports[`ImportPrivateKey render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -496,7 +496,7 @@ exports[`ImportPrivateKey render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -525,7 +525,7 @@ exports[`ImportPrivateKey render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -554,7 +554,7 @@ exports[`ImportPrivateKey render matches snapshot 1`] = ` "borderRadius": 6, "borderWidth": 0.5, "color": "#b7bbc8", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "height": 120, "marginVertical": 16, @@ -604,7 +604,7 @@ exports[`ImportPrivateKey render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -656,7 +656,7 @@ exports[`ImportPrivateKey render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/ImportPrivateKeySuccess/__snapshots__/index.test.tsx.snap b/app/components/Views/ImportPrivateKeySuccess/__snapshots__/index.test.tsx.snap index dcba3e058fb8..366fb438bbea 100644 --- a/app/components/Views/ImportPrivateKeySuccess/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/ImportPrivateKeySuccess/__snapshots__/index.test.tsx.snap @@ -418,7 +418,7 @@ exports[`ImportPrivateKeySuccess should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 32, "justifyContent": "center", "marginBottom": 20, @@ -440,7 +440,7 @@ exports[`ImportPrivateKeySuccess should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "lineHeight": 23, "textAlign": "left", diff --git a/app/components/Views/LedgerConnect/__snapshots__/index.test.tsx.snap b/app/components/Views/LedgerConnect/__snapshots__/index.test.tsx.snap index b83d11ac20d8..4b4e002d1e5c 100644 --- a/app/components/Views/LedgerConnect/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/LedgerConnect/__snapshots__/index.test.tsx.snap @@ -81,14 +81,14 @@ exports[`LedgerConnect render matches latest snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -111,7 +111,7 @@ exports[`LedgerConnect render matches latest snapshot 1`] = ` undefined, undefined, { - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 24, }, ] @@ -158,14 +158,14 @@ exports[`LedgerConnect render matches latest snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -201,7 +201,7 @@ exports[`LedgerConnect render matches latest snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -241,7 +241,7 @@ exports[`LedgerConnect render matches latest snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -281,7 +281,7 @@ exports[`LedgerConnect render matches latest snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -321,7 +321,7 @@ exports[`LedgerConnect render matches latest snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -361,7 +361,7 @@ exports[`LedgerConnect render matches latest snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -401,7 +401,7 @@ exports[`LedgerConnect render matches latest snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -442,14 +442,14 @@ exports[`LedgerConnect render matches latest snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -536,7 +536,7 @@ exports[`LedgerConnect render matches latest snapshot 1`] = ` "alignSelf": "flex-start", "color": "#121314", "flex": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "paddingBottom": 10, "paddingHorizontal": 15, @@ -622,7 +622,7 @@ exports[`LedgerConnect render matches latest snapshot 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, diff --git a/app/components/Views/LedgerSelectAccount/__snapshots__/index.test.tsx.snap b/app/components/Views/LedgerSelectAccount/__snapshots__/index.test.tsx.snap index c5faed12f050..3e4ca0b249e2 100644 --- a/app/components/Views/LedgerSelectAccount/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/LedgerSelectAccount/__snapshots__/index.test.tsx.snap @@ -81,14 +81,14 @@ exports[`LedgerSelectAccount renders correctly to match snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -111,7 +111,7 @@ exports[`LedgerSelectAccount renders correctly to match snapshot 1`] = ` undefined, undefined, { - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 24, }, ] @@ -158,14 +158,14 @@ exports[`LedgerSelectAccount renders correctly to match snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -208,7 +208,7 @@ exports[`LedgerSelectAccount renders correctly to match snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -248,7 +248,7 @@ exports[`LedgerSelectAccount renders correctly to match snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -288,7 +288,7 @@ exports[`LedgerSelectAccount renders correctly to match snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -328,7 +328,7 @@ exports[`LedgerSelectAccount renders correctly to match snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -368,7 +368,7 @@ exports[`LedgerSelectAccount renders correctly to match snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -409,14 +409,14 @@ exports[`LedgerSelectAccount renders correctly to match snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -553,14 +553,14 @@ exports[`LedgerSelectAccount renders correctly to match snapshot when getAccount [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -583,7 +583,7 @@ exports[`LedgerSelectAccount renders correctly to match snapshot when getAccount undefined, undefined, { - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 24, }, ] @@ -630,14 +630,14 @@ exports[`LedgerSelectAccount renders correctly to match snapshot when getAccount [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -680,7 +680,7 @@ exports[`LedgerSelectAccount renders correctly to match snapshot when getAccount [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -720,7 +720,7 @@ exports[`LedgerSelectAccount renders correctly to match snapshot when getAccount [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -760,7 +760,7 @@ exports[`LedgerSelectAccount renders correctly to match snapshot when getAccount [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -800,7 +800,7 @@ exports[`LedgerSelectAccount renders correctly to match snapshot when getAccount [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -840,7 +840,7 @@ exports[`LedgerSelectAccount renders correctly to match snapshot when getAccount [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -881,14 +881,14 @@ exports[`LedgerSelectAccount renders correctly to match snapshot when getAccount [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, diff --git a/app/components/Views/Login/__snapshots__/index.test.tsx.snap b/app/components/Views/Login/__snapshots__/index.test.tsx.snap index be6153a19bb6..c81ae03eb662 100644 --- a/app/components/Views/Login/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/Login/__snapshots__/index.test.tsx.snap @@ -168,7 +168,7 @@ exports[`Login renders matching snapshot 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -245,7 +245,7 @@ exports[`Login renders matching snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -284,7 +284,7 @@ exports[`Login renders matching snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -519,7 +519,7 @@ exports[`Login renders matching snapshot when password input is focused 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -595,7 +595,7 @@ exports[`Login renders matching snapshot when password input is focused 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -634,7 +634,7 @@ exports[`Login renders matching snapshot when password input is focused 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/ManualBackupStep1/__snapshots__/index.test.tsx.snap b/app/components/Views/ManualBackupStep1/__snapshots__/index.test.tsx.snap index a7b5d4bfc6f8..fdabb56d48d4 100644 --- a/app/components/Views/ManualBackupStep1/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/ManualBackupStep1/__snapshots__/index.test.tsx.snap @@ -57,7 +57,7 @@ exports[`ManualBackupStep1 Theme appearance renders dark SRP design image by def style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -78,7 +78,7 @@ exports[`ManualBackupStep1 Theme appearance renders dark SRP design image by def style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -93,7 +93,7 @@ exports[`ManualBackupStep1 Theme appearance renders dark SRP design image by def style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -110,7 +110,7 @@ exports[`ManualBackupStep1 Theme appearance renders dark SRP design image by def style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -227,7 +227,7 @@ exports[`ManualBackupStep1 Theme appearance renders dark SRP design image by def style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -241,7 +241,7 @@ exports[`ManualBackupStep1 Theme appearance renders dark SRP design image by def style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -294,7 +294,7 @@ exports[`ManualBackupStep1 Theme appearance renders dark SRP design image by def style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -368,7 +368,7 @@ exports[`ManualBackupStep1 Theme appearance renders light SRP design image for l style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -389,7 +389,7 @@ exports[`ManualBackupStep1 Theme appearance renders light SRP design image for l style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -404,7 +404,7 @@ exports[`ManualBackupStep1 Theme appearance renders light SRP design image for l style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -421,7 +421,7 @@ exports[`ManualBackupStep1 Theme appearance renders light SRP design image for l style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -538,7 +538,7 @@ exports[`ManualBackupStep1 Theme appearance renders light SRP design image for l style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -552,7 +552,7 @@ exports[`ManualBackupStep1 Theme appearance renders light SRP design image for l style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -605,7 +605,7 @@ exports[`ManualBackupStep1 Theme appearance renders light SRP design image for l style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -679,7 +679,7 @@ exports[`ManualBackupStep1 render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -700,7 +700,7 @@ exports[`ManualBackupStep1 render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -715,7 +715,7 @@ exports[`ManualBackupStep1 render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -732,7 +732,7 @@ exports[`ManualBackupStep1 render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -849,7 +849,7 @@ exports[`ManualBackupStep1 render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -863,7 +863,7 @@ exports[`ManualBackupStep1 render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -916,7 +916,7 @@ exports[`ManualBackupStep1 render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/MultiRpcModal/__snapshots__/MultiRpcModal.test.tsx.snap b/app/components/Views/MultiRpcModal/__snapshots__/MultiRpcModal.test.tsx.snap index af2ce810f29e..f887cf866d81 100644 --- a/app/components/Views/MultiRpcModal/__snapshots__/MultiRpcModal.test.tsx.snap +++ b/app/components/Views/MultiRpcModal/__snapshots__/MultiRpcModal.test.tsx.snap @@ -453,7 +453,7 @@ exports[`MultiRpcModal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -507,7 +507,7 @@ exports[`MultiRpcModal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -574,7 +574,7 @@ exports[`MultiRpcModal render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/MultichainAccounts/IntroModal/MultichainAccountsIntroModal.styles.ts b/app/components/Views/MultichainAccounts/IntroModal/MultichainAccountsIntroModal.styles.ts index f1db9543f58e..05b3b12eb5ba 100644 --- a/app/components/Views/MultichainAccounts/IntroModal/MultichainAccountsIntroModal.styles.ts +++ b/app/components/Views/MultichainAccounts/IntroModal/MultichainAccountsIntroModal.styles.ts @@ -31,12 +31,6 @@ const styleSheet = (params: { theme: Theme }) => { flex: 1, paddingHorizontal: 24, }, - title: { - textAlign: 'center', - flex: 1, - fontSize: 16, - fontWeight: '600', - }, imagePlaceholder: { width: '100%', height: 250, diff --git a/app/components/Views/MultichainAccounts/IntroModal/MultichainAccountsIntroModal.tsx b/app/components/Views/MultichainAccounts/IntroModal/MultichainAccountsIntroModal.tsx index 3cfbd55aa4ae..9fd677ae4a1c 100644 --- a/app/components/Views/MultichainAccounts/IntroModal/MultichainAccountsIntroModal.tsx +++ b/app/components/Views/MultichainAccounts/IntroModal/MultichainAccountsIntroModal.tsx @@ -133,7 +133,6 @@ const MultichainAccountsIntroModal = () => { {strings('multichain_accounts.intro.title')} diff --git a/app/components/Views/MultichainAccounts/MultichainAccountsConnectedList/__snapshots__/MultichainAccountsConnectedList.test.tsx.snap b/app/components/Views/MultichainAccounts/MultichainAccountsConnectedList/__snapshots__/MultichainAccountsConnectedList.test.tsx.snap index 1fbb85c5b010..bf53ed685300 100644 --- a/app/components/Views/MultichainAccounts/MultichainAccountsConnectedList/__snapshots__/MultichainAccountsConnectedList.test.tsx.snap +++ b/app/components/Views/MultichainAccounts/MultichainAccountsConnectedList/__snapshots__/MultichainAccountsConnectedList.test.tsx.snap @@ -203,7 +203,7 @@ exports[`MultichainAccountsConnectedList renders component with different accoun { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -247,7 +247,7 @@ exports[`MultichainAccountsConnectedList renders component with different accoun style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -412,7 +412,7 @@ exports[`MultichainAccountsConnectedList renders component with different accoun { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -456,7 +456,7 @@ exports[`MultichainAccountsConnectedList renders component with different accoun style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -549,7 +549,7 @@ exports[`MultichainAccountsConnectedList renders component with different accoun style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/MultichainAccounts/WalletDetails/BaseWalletDetails/index.tsx b/app/components/Views/MultichainAccounts/WalletDetails/BaseWalletDetails/index.tsx index 577a64439d02..637bf513fe89 100644 --- a/app/components/Views/MultichainAccounts/WalletDetails/BaseWalletDetails/index.tsx +++ b/app/components/Views/MultichainAccounts/WalletDetails/BaseWalletDetails/index.tsx @@ -33,7 +33,7 @@ import { useSelector } from 'react-redux'; import AnimatedSpinner, { SpinnerSize } from '../../../../UI/AnimatedSpinner'; import { useWalletInfo } from '../hooks/useWalletInfo'; import Routes from '../../../../../constants/navigation/Routes'; -import { FlashList, FlashListRef } from '@shopify/flash-list'; +import { FlashList } from '@shopify/flash-list'; import AccountCell from '../../../../../component-library/components-temp/MultichainAccounts/AccountCell/AccountCell'; import { selectAccountGroupsByWallet } from '../../../../../selectors/multichainAccounts/accountTreeController'; import AddAccountItem from './components/AddAccountItem'; @@ -55,7 +55,7 @@ export const BaseWalletDetails = ({ const { colors } = theme; const [isLoading, setIsLoading] = useState(false); const accountGroupsFlashListRef = - useRef | null>(null); + useRef | null>(null); const { keyringId, isSRPBackedUp } = useWalletInfo(wallet); diff --git a/app/components/Views/MultichainAccounts/WalletDetails/BaseWalletDetails/styles.ts b/app/components/Views/MultichainAccounts/WalletDetails/BaseWalletDetails/styles.ts index fe4d423650fe..ea893e98bb06 100644 --- a/app/components/Views/MultichainAccounts/WalletDetails/BaseWalletDetails/styles.ts +++ b/app/components/Views/MultichainAccounts/WalletDetails/BaseWalletDetails/styles.ts @@ -1,4 +1,5 @@ import { Theme } from '@metamask/design-tokens'; +import { fontStyles } from '../../../../../styles/common'; import { StyleSheet, ViewStyle } from 'react-native'; const styleSheet = (params: { theme: Theme }) => { @@ -142,7 +143,7 @@ const styleSheet = (params: { theme: Theme }) => { }, addAccountButtonText: { color: colors.primary.default, - fontWeight: '500', + ...fontStyles.medium, }, }); }; diff --git a/app/components/Views/NFTAutoDetectionModal/__snapshots__/NFTAutoDetectionModal.test.tsx.snap b/app/components/Views/NFTAutoDetectionModal/__snapshots__/NFTAutoDetectionModal.test.tsx.snap index 738a4fc53268..941813644855 100644 --- a/app/components/Views/NFTAutoDetectionModal/__snapshots__/NFTAutoDetectionModal.test.tsx.snap +++ b/app/components/Views/NFTAutoDetectionModal/__snapshots__/NFTAutoDetectionModal.test.tsx.snap @@ -453,7 +453,7 @@ exports[`NFT Auto detection modal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -504,7 +504,7 @@ exports[`NFT Auto detection modal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -518,7 +518,7 @@ exports[`NFT Auto detection modal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -533,7 +533,7 @@ exports[`NFT Auto detection modal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -548,7 +548,7 @@ exports[`NFT Auto detection modal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -595,7 +595,7 @@ exports[`NFT Auto detection modal render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -639,7 +639,7 @@ exports[`NFT Auto detection modal render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/NetworkConnect/NetworkConnectMultiSelector/__snapshots__/NetworkConnectMultiSelector.test.tsx.snap b/app/components/Views/NetworkConnect/NetworkConnectMultiSelector/__snapshots__/NetworkConnectMultiSelector.test.tsx.snap index 0f390f386886..76631e8c9d48 100644 --- a/app/components/Views/NetworkConnect/NetworkConnectMultiSelector/__snapshots__/NetworkConnectMultiSelector.test.tsx.snap +++ b/app/components/Views/NetworkConnect/NetworkConnectMultiSelector/__snapshots__/NetworkConnectMultiSelector.test.tsx.snap @@ -67,7 +67,7 @@ exports[`NetworkConnectMultiSelector renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -154,7 +154,7 @@ exports[`NetworkConnectMultiSelector renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -358,7 +358,7 @@ exports[`NetworkConnectMultiSelector renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -518,7 +518,7 @@ exports[`NetworkConnectMultiSelector renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -590,7 +590,7 @@ exports[`NetworkConnectMultiSelector renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/NetworkSelector/RpcSelectionModal/__snapshots__/RpcSelectionModal.test.tsx.snap b/app/components/Views/NetworkSelector/RpcSelectionModal/__snapshots__/RpcSelectionModal.test.tsx.snap index 75e7eaf85974..ecba40d1da4c 100644 --- a/app/components/Views/NetworkSelector/RpcSelectionModal/__snapshots__/RpcSelectionModal.test.tsx.snap +++ b/app/components/Views/NetworkSelector/RpcSelectionModal/__snapshots__/RpcSelectionModal.test.tsx.snap @@ -144,7 +144,7 @@ exports[`RpcSelectionModal should render correctly when visible 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -227,7 +227,7 @@ exports[`RpcSelectionModal should render correctly when visible 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -250,7 +250,7 @@ exports[`RpcSelectionModal should render correctly when visible 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -304,7 +304,7 @@ exports[`RpcSelectionModal should render correctly when visible 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/NetworkSelector/__snapshots__/NetworkSelector.test.tsx.snap b/app/components/Views/NetworkSelector/__snapshots__/NetworkSelector.test.tsx.snap index 6935c6352b99..60fab8b4fa42 100644 --- a/app/components/Views/NetworkSelector/__snapshots__/NetworkSelector.test.tsx.snap +++ b/app/components/Views/NetworkSelector/__snapshots__/NetworkSelector.test.tsx.snap @@ -417,7 +417,7 @@ exports[`Network Selector renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -481,7 +481,7 @@ exports[`Network Selector renders correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "paddingLeft": 10, } @@ -595,7 +595,7 @@ exports[`Network Selector renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -716,7 +716,7 @@ exports[`Network Selector renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -812,7 +812,7 @@ exports[`Network Selector renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -908,7 +908,7 @@ exports[`Network Selector renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1004,7 +1004,7 @@ exports[`Network Selector renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1079,7 +1079,7 @@ exports[`Network Selector renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1103,7 +1103,7 @@ exports[`Network Selector renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1199,7 +1199,7 @@ exports[`Network Selector renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1295,7 +1295,7 @@ exports[`Network Selector renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1391,7 +1391,7 @@ exports[`Network Selector renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1422,7 +1422,7 @@ exports[`Network Selector renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1489,7 +1489,7 @@ exports[`Network Selector renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1932,7 +1932,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1999,7 +1999,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled "borderColor": "#b7bbc8", "color": "#121314", "flex": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "paddingLeft": 10, } @@ -2048,7 +2048,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2158,7 +2158,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2203,7 +2203,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2404,7 +2404,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2449,7 +2449,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2622,7 +2622,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2667,7 +2667,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2840,7 +2840,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2885,7 +2885,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3058,7 +3058,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3103,7 +3103,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3255,7 +3255,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3279,7 +3279,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3324,7 +3324,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3478,7 +3478,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3574,7 +3574,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3670,7 +3670,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3701,7 +3701,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -3827,7 +3827,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -3875,7 +3875,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3954,7 +3954,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -3993,7 +3993,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled { "alignSelf": "flex-start", "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -4018,7 +4018,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4097,7 +4097,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -4145,7 +4145,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4224,7 +4224,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -4272,7 +4272,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4351,7 +4351,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -4399,7 +4399,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4478,7 +4478,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -4526,7 +4526,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4605,7 +4605,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -4653,7 +4653,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4732,7 +4732,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -4780,7 +4780,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4859,7 +4859,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -4907,7 +4907,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4935,7 +4935,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -5002,7 +5002,7 @@ exports[`Network Selector renders correctly when network UI redesign is enabled style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/NftDetails/NftDetails.styles.ts b/app/components/Views/NftDetails/NftDetails.styles.ts index 652aadabbae1..81846975f019 100644 --- a/app/components/Views/NftDetails/NftDetails.styles.ts +++ b/app/components/Views/NftDetails/NftDetails.styles.ts @@ -64,7 +64,7 @@ const styleSheet = (params: { theme: Theme }) => { ...fontStyles.normal, color: colors.text.alternative, fontSize: 12, - fontWeight: '400', + ...fontStyles.normal, lineHeight: 20, }, wrapper: { @@ -86,28 +86,28 @@ const styleSheet = (params: { theme: Theme }) => { generalInfoTitleTextStyle: { color: colors.text.alternative, ...fontStyles.normal, - fontWeight: '500', + ...fontStyles.medium, lineHeight: 16, fontSize: 10, }, informationRowTitleStyle: { color: colors.text.alternative, ...fontStyles.normal, - fontWeight: '500', + ...fontStyles.medium, lineHeight: 22, fontSize: 14, }, informationRowValueStyle: { color: colors.text.default, ...fontStyles.normal, - fontWeight: '400', + ...fontStyles.normal, lineHeight: 22, fontSize: 14, }, informationRowValueAddressStyle: { color: colors.primary.default, ...fontStyles.normal, - fontWeight: '500', + ...fontStyles.medium, lineHeight: 20, fontSize: 12, }, @@ -118,14 +118,14 @@ const styleSheet = (params: { theme: Theme }) => { generalInfoValueTextStyle: { color: colors.text.default, ...fontStyles.normal, - fontWeight: '700', + ...fontStyles.bold, lineHeight: 24, fontSize: 16, }, generalInfoValueTextAddressStyle: { color: colors.primary.default, ...fontStyles.normal, - fontWeight: '500', + ...fontStyles.medium, lineHeight: 20, fontSize: 12, }, diff --git a/app/components/Views/NftDetails/__snapshots__/NftDetails.test.ts.snap b/app/components/Views/NftDetails/__snapshots__/NftDetails.test.ts.snap index 88fec5cb7d05..c7e223db0644 100644 --- a/app/components/Views/NftDetails/__snapshots__/NftDetails.test.ts.snap +++ b/app/components/Views/NftDetails/__snapshots__/NftDetails.test.ts.snap @@ -512,7 +512,7 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 20, "letterSpacing": 0, "lineHeight": 24, @@ -545,9 +545,8 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, - "fontWeight": "400", "letterSpacing": 0, "lineHeight": 20, } @@ -600,9 +599,8 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Medium", "fontSize": 10, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 16, } @@ -625,9 +623,8 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Medium", "fontSize": 10, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 16, } @@ -668,9 +665,8 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Medium", "fontSize": 10, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 16, } @@ -693,9 +689,8 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Bold", "fontSize": 16, - "fontWeight": "700", "letterSpacing": 0, "lineHeight": 24, } @@ -755,9 +750,8 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Medium", "fontSize": 10, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 16, } @@ -780,9 +774,8 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Bold", "fontSize": 16, - "fontWeight": "700", "letterSpacing": 0, "lineHeight": 24, } @@ -823,9 +816,8 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Medium", "fontSize": 10, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 16, } @@ -851,9 +843,8 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Medium", "fontSize": 12, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 20, } @@ -899,9 +890,8 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Medium", "fontSize": 14, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -914,9 +904,8 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, - "fontWeight": "400", "letterSpacing": 0, "lineHeight": 22, } @@ -942,9 +931,8 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Medium", "fontSize": 14, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -957,9 +945,8 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, - "fontWeight": "400", "letterSpacing": 0, "lineHeight": 22, } @@ -985,9 +972,8 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Medium", "fontSize": 14, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -1000,9 +986,8 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, - "fontWeight": "400", "letterSpacing": 0, "lineHeight": 22, } @@ -1028,9 +1013,8 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Medium", "fontSize": 14, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -1043,9 +1027,8 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, - "fontWeight": "400", "letterSpacing": 0, "lineHeight": 22, } @@ -1059,7 +1042,7 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 20, "letterSpacing": 0, "lineHeight": 24, @@ -1086,9 +1069,8 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Medium", "fontSize": 14, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -1101,9 +1083,8 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, - "fontWeight": "400", "letterSpacing": 0, "lineHeight": 22, } @@ -1117,7 +1098,7 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 20, "letterSpacing": 0, "lineHeight": 24, @@ -1144,9 +1125,8 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Medium", "fontSize": 14, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -1168,9 +1148,8 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, - "fontWeight": "400", "letterSpacing": 0, "lineHeight": 22, } @@ -1204,7 +1183,7 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 20, "letterSpacing": 0, "lineHeight": 24, @@ -1250,9 +1229,8 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Medium", "fontSize": 14, - "fontWeight": "500", "letterSpacing": 0, "lineHeight": 22, } @@ -1267,9 +1245,8 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, - "fontWeight": "400", "letterSpacing": 0, "lineHeight": 22, } @@ -1292,7 +1269,7 @@ exports[`NftDetails renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1353,7 +1330,7 @@ exports[`NftDetails renders correctly 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, diff --git a/app/components/Views/OfflineMode/__snapshots__/index.test.tsx.snap b/app/components/Views/OfflineMode/__snapshots__/index.test.tsx.snap index 86fc31d241cd..f2b6770eceee 100644 --- a/app/components/Views/OfflineMode/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/OfflineMode/__snapshots__/index.test.tsx.snap @@ -42,7 +42,7 @@ exports[`OfflineMode should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -51,7 +51,7 @@ exports[`OfflineMode should render correctly 1`] = ` }, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -75,7 +75,7 @@ exports[`OfflineMode should render correctly 1`] = ` undefined, { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "marginBottom": 10, }, @@ -89,7 +89,7 @@ exports[`OfflineMode should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -120,7 +120,7 @@ exports[`OfflineMode should render correctly 1`] = ` undefined, { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, }, ] @@ -170,7 +170,7 @@ exports[`OfflineMode should render correctly 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, diff --git a/app/components/Views/Onboarding/__snapshots__/index.test.tsx.snap b/app/components/Views/Onboarding/__snapshots__/index.test.tsx.snap index 06a9df6cd6e2..e91c320ae73d 100644 --- a/app/components/Views/Onboarding/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/Onboarding/__snapshots__/index.test.tsx.snap @@ -104,7 +104,7 @@ exports[`Onboarding renders correctly 1`] = ` style={ { "color": "#000000", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -143,7 +143,7 @@ exports[`Onboarding renders correctly 1`] = ` style={ { "color": "#FFFFFF", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -301,7 +301,7 @@ exports[`Onboarding renders correctly with android 1`] = ` style={ { "color": "#000000", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -340,7 +340,7 @@ exports[`Onboarding renders correctly with android 1`] = ` style={ { "color": "#FFFFFF", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -498,7 +498,7 @@ exports[`Onboarding renders correctly with large device and iphoneX 1`] = ` style={ { "color": "#000000", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -537,7 +537,7 @@ exports[`Onboarding renders correctly with large device and iphoneX 1`] = ` style={ { "color": "#FFFFFF", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -695,7 +695,7 @@ exports[`Onboarding renders correctly with medium device and android 1`] = ` style={ { "color": "#000000", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -734,7 +734,7 @@ exports[`Onboarding renders correctly with medium device and android 1`] = ` style={ { "color": "#FFFFFF", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/OnboardingSheet/__snapshots__/index.test.tsx.snap b/app/components/Views/OnboardingSheet/__snapshots__/index.test.tsx.snap index e66ef99af43e..ccdabea98d6b 100644 --- a/app/components/Views/OnboardingSheet/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/OnboardingSheet/__snapshots__/index.test.tsx.snap @@ -185,7 +185,7 @@ exports[`OnboardingSheet Snapshots renders correctly with createWallet=false (im style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -241,7 +241,7 @@ exports[`OnboardingSheet Snapshots renders correctly with createWallet=false (im style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -277,7 +277,7 @@ exports[`OnboardingSheet Snapshots renders correctly with createWallet=false (im style={ { "color": "#b7bbc8", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -335,7 +335,7 @@ exports[`OnboardingSheet Snapshots renders correctly with createWallet=false (im style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -359,7 +359,7 @@ exports[`OnboardingSheet Snapshots renders correctly with createWallet=false (im style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -375,7 +375,7 @@ exports[`OnboardingSheet Snapshots renders correctly with createWallet=false (im style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -395,7 +395,7 @@ exports[`OnboardingSheet Snapshots renders correctly with createWallet=false (im style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -599,7 +599,7 @@ exports[`OnboardingSheet Snapshots renders correctly with createWallet=true (cre style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -655,7 +655,7 @@ exports[`OnboardingSheet Snapshots renders correctly with createWallet=true (cre style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -691,7 +691,7 @@ exports[`OnboardingSheet Snapshots renders correctly with createWallet=true (cre style={ { "color": "#b7bbc8", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -749,7 +749,7 @@ exports[`OnboardingSheet Snapshots renders correctly with createWallet=true (cre style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -773,7 +773,7 @@ exports[`OnboardingSheet Snapshots renders correctly with createWallet=true (cre style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -789,7 +789,7 @@ exports[`OnboardingSheet Snapshots renders correctly with createWallet=true (cre style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, @@ -809,7 +809,7 @@ exports[`OnboardingSheet Snapshots renders correctly with createWallet=true (cre style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 12, "letterSpacing": 0.25, "lineHeight": 20, diff --git a/app/components/Views/OnboardingSuccess/DefaultSettings/__snapshots__/index.test.tsx.snap b/app/components/Views/OnboardingSuccess/DefaultSettings/__snapshots__/index.test.tsx.snap index f8236e592aaa..abc0667a7c45 100644 --- a/app/components/Views/OnboardingSuccess/DefaultSettings/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/OnboardingSuccess/DefaultSettings/__snapshots__/index.test.tsx.snap @@ -21,7 +21,7 @@ exports[`DefaultSettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -35,7 +35,7 @@ exports[`DefaultSettings should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -81,7 +81,7 @@ exports[`DefaultSettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -95,7 +95,7 @@ exports[`DefaultSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -174,7 +174,7 @@ exports[`DefaultSettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -188,7 +188,7 @@ exports[`DefaultSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -267,7 +267,7 @@ exports[`DefaultSettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -281,7 +281,7 @@ exports[`DefaultSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/OnboardingSuccess/OnboardingAssetsSettings/__snapshots__/index.test.tsx.snap b/app/components/Views/OnboardingSuccess/OnboardingAssetsSettings/__snapshots__/index.test.tsx.snap index 4ebc3ad77e3d..9c6da6b48e25 100644 --- a/app/components/Views/OnboardingSuccess/OnboardingAssetsSettings/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/OnboardingSuccess/OnboardingAssetsSettings/__snapshots__/index.test.tsx.snap @@ -38,7 +38,7 @@ exports[`OnboardingAssetSettings should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -91,7 +91,7 @@ exports[`OnboardingAssetSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -123,7 +123,7 @@ exports[`OnboardingAssetSettings should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -174,7 +174,7 @@ exports[`OnboardingAssetSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -206,7 +206,7 @@ exports[`OnboardingAssetSettings should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -257,7 +257,7 @@ exports[`OnboardingAssetSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -289,7 +289,7 @@ exports[`OnboardingAssetSettings should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -340,7 +340,7 @@ exports[`OnboardingAssetSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -362,7 +362,7 @@ exports[`OnboardingAssetSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -412,7 +412,7 @@ exports[`OnboardingAssetSettings should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -463,7 +463,7 @@ exports[`OnboardingAssetSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/OnboardingSuccess/OnboardingGeneralSettings/__snapshots__/index.test.tsx.snap b/app/components/Views/OnboardingSuccess/OnboardingGeneralSettings/__snapshots__/index.test.tsx.snap index 0c17115bb548..afde32bf0a02 100644 --- a/app/components/Views/OnboardingSuccess/OnboardingGeneralSettings/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/OnboardingSuccess/OnboardingGeneralSettings/__snapshots__/index.test.tsx.snap @@ -48,7 +48,7 @@ exports[`OnboardingGeneralSettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -85,7 +85,7 @@ exports[`OnboardingGeneralSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -99,7 +99,7 @@ exports[`OnboardingGeneralSettings should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -133,7 +133,7 @@ exports[`OnboardingGeneralSettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -171,7 +171,7 @@ exports[`OnboardingGeneralSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -185,7 +185,7 @@ exports[`OnboardingGeneralSettings should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -218,7 +218,7 @@ exports[`OnboardingGeneralSettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -233,9 +233,8 @@ exports[`OnboardingGeneralSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, - "fontWeight": "400", "letterSpacing": 0, "lineHeight": 22, "marginTop": 10, @@ -250,7 +249,7 @@ exports[`OnboardingGeneralSettings should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -267,7 +266,7 @@ exports[`OnboardingGeneralSettings should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -319,7 +318,7 @@ exports[`OnboardingGeneralSettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, "letterSpacing": 0, "lineHeight": undefined, @@ -337,7 +336,7 @@ exports[`OnboardingGeneralSettings should render correctly 1`] = ` { "color": "#121314", "flexShrink": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/OnboardingSuccess/OnboardingSecuritySettings/__snapshots__/index.test.tsx.snap b/app/components/Views/OnboardingSuccess/OnboardingSecuritySettings/__snapshots__/index.test.tsx.snap index cf6925e8744e..79caa952c8be 100644 --- a/app/components/Views/OnboardingSuccess/OnboardingSecuritySettings/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/OnboardingSuccess/OnboardingSecuritySettings/__snapshots__/index.test.tsx.snap @@ -33,7 +33,7 @@ exports[`OnboardingSecuritySettings Basic rendering should render correctly with { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -84,7 +84,7 @@ exports[`OnboardingSecuritySettings Basic rendering should render correctly with style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -98,7 +98,7 @@ exports[`OnboardingSecuritySettings Basic rendering should render correctly with style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/OnboardingSuccess/__snapshots__/index.test.tsx.snap b/app/components/Views/OnboardingSuccess/__snapshots__/index.test.tsx.snap index a5840d79082c..ba2bd79ec9ed 100644 --- a/app/components/Views/OnboardingSuccess/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/OnboardingSuccess/__snapshots__/index.test.tsx.snap @@ -125,7 +125,7 @@ exports[`OnboardingSuccess route params successFlow is BACKED_UP_SRP renders mat style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -150,7 +150,7 @@ exports[`OnboardingSuccess route params successFlow is BACKED_UP_SRP renders mat style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -290,7 +290,7 @@ exports[`OnboardingSuccess route params successFlow is IMPORT_FROM_SEED_PHRASE f style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -315,7 +315,7 @@ exports[`OnboardingSuccess route params successFlow is IMPORT_FROM_SEED_PHRASE f style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -455,7 +455,7 @@ exports[`OnboardingSuccess route params successFlow is IMPORT_FROM_SEED_PHRASE r style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -480,7 +480,7 @@ exports[`OnboardingSuccess route params successFlow is IMPORT_FROM_SEED_PHRASE r style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -620,7 +620,7 @@ exports[`OnboardingSuccess route params successFlow is NO_BACKED_UP_SRP renders style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -645,7 +645,7 @@ exports[`OnboardingSuccess route params successFlow is NO_BACKED_UP_SRP renders style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -785,7 +785,7 @@ exports[`OnboardingSuccessComponent renders matching snapshot when successFlow i style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -810,7 +810,7 @@ exports[`OnboardingSuccessComponent renders matching snapshot when successFlow i style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -950,7 +950,7 @@ exports[`OnboardingSuccessComponent renders matching snapshot when successFlow i style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -975,7 +975,7 @@ exports[`OnboardingSuccessComponent renders matching snapshot when successFlow i style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1115,7 +1115,7 @@ exports[`OnboardingSuccessComponent renders matching snapshot when successFlow i style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1140,7 +1140,7 @@ exports[`OnboardingSuccessComponent renders matching snapshot when successFlow i style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/OriginSpamModal/__snapshots__/OriginSpamModal.test.tsx.snap b/app/components/Views/OriginSpamModal/__snapshots__/OriginSpamModal.test.tsx.snap index 35767df6e899..a820821f49c8 100644 --- a/app/components/Views/OriginSpamModal/__snapshots__/OriginSpamModal.test.tsx.snap +++ b/app/components/Views/OriginSpamModal/__snapshots__/OriginSpamModal.test.tsx.snap @@ -46,7 +46,7 @@ exports[`OriginSpamModal renders SiteBlockedContent if user opt in to block dapp style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -69,7 +69,7 @@ exports[`OriginSpamModal renders SiteBlockedContent if user opt in to block dapp style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -114,7 +114,7 @@ exports[`OriginSpamModal renders SiteBlockedContent if user opt in to block dapp style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -166,7 +166,7 @@ exports[`OriginSpamModal renders spam modal content by default 1`] = ` "color": "#121314", "flex": 1, "flexWrap": "wrap", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -237,7 +237,7 @@ exports[`OriginSpamModal renders spam modal content by default 1`] = ` { "color": "#686e7d", "flexShrink": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -253,7 +253,7 @@ exports[`OriginSpamModal renders spam modal content by default 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -302,7 +302,7 @@ exports[`OriginSpamModal renders spam modal content by default 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -339,7 +339,7 @@ exports[`OriginSpamModal renders spam modal content by default 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/PickComponent/__snapshots__/index.test.tsx.snap b/app/components/Views/PickComponent/__snapshots__/index.test.tsx.snap index f31c35ce14f3..cdb61cc9dbdf 100644 --- a/app/components/Views/PickComponent/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/PickComponent/__snapshots__/index.test.tsx.snap @@ -55,7 +55,7 @@ exports[`PickComponent should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -125,7 +125,7 @@ exports[`PickComponent should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/ProtectWalletMandatoryModal/__snapshots__/ProtectWalletMandatoryModal.test.tsx.snap b/app/components/Views/ProtectWalletMandatoryModal/__snapshots__/ProtectWalletMandatoryModal.test.tsx.snap index 654160ce7c86..57b12b36e302 100644 --- a/app/components/Views/ProtectWalletMandatoryModal/__snapshots__/ProtectWalletMandatoryModal.test.tsx.snap +++ b/app/components/Views/ProtectWalletMandatoryModal/__snapshots__/ProtectWalletMandatoryModal.test.tsx.snap @@ -157,7 +157,7 @@ exports[`ProtectWalletMandatoryModal renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "marginVertical": 8, "textAlign": "center", @@ -170,7 +170,7 @@ exports[`ProtectWalletMandatoryModal renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "justifyContent": "center", "marginVertical": 8, @@ -222,7 +222,7 @@ exports[`ProtectWalletMandatoryModal renders correctly 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -402,7 +402,7 @@ exports[`ProtectWalletMandatoryModal renders correctly on iPhoneX 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "marginVertical": 8, "textAlign": "center", @@ -415,7 +415,7 @@ exports[`ProtectWalletMandatoryModal renders correctly on iPhoneX 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "justifyContent": "center", "marginVertical": 8, @@ -467,7 +467,7 @@ exports[`ProtectWalletMandatoryModal renders correctly on iPhoneX 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, diff --git a/app/components/Views/QRScanner/__snapshots__/index.test.tsx.snap b/app/components/Views/QRScanner/__snapshots__/index.test.tsx.snap index b33ad2cfdb2d..29ce5d218820 100644 --- a/app/components/Views/QRScanner/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/QRScanner/__snapshots__/index.test.tsx.snap @@ -49,7 +49,7 @@ exports[`QrScanner render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "fontWeight": "500", "letterSpacing": 0, diff --git a/app/components/Views/ResetPassword/__snapshots__/index.test.tsx.snap b/app/components/Views/ResetPassword/__snapshots__/index.test.tsx.snap index 9c083e6c3f5e..ba84bb14c5d6 100644 --- a/app/components/Views/ResetPassword/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/ResetPassword/__snapshots__/index.test.tsx.snap @@ -111,7 +111,7 @@ exports[`ResetPassword render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -192,7 +192,7 @@ exports[`ResetPassword render matches snapshot 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 46, @@ -246,7 +246,7 @@ exports[`ResetPassword render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/ResetPassword/index.js b/app/components/Views/ResetPassword/index.js index e7595bf24c3d..4e028d22f5be 100644 --- a/app/components/Views/ResetPassword/index.js +++ b/app/components/Views/ResetPassword/index.js @@ -167,7 +167,7 @@ const createStyles = (colors) => subtitle: { lineHeight: 23, textAlign: 'center', - fontWeight: '400', + ...fontStyles.normal, }, text: { marginBottom: 10, diff --git a/app/components/Views/RevealPrivateCredential/__snapshots__/RevealPrivateCredential.test.tsx.snap b/app/components/Views/RevealPrivateCredential/__snapshots__/RevealPrivateCredential.test.tsx.snap index b58e2a9a23e5..a6eb4b03c228 100644 --- a/app/components/Views/RevealPrivateCredential/__snapshots__/RevealPrivateCredential.test.tsx.snap +++ b/app/components/Views/RevealPrivateCredential/__snapshots__/RevealPrivateCredential.test.tsx.snap @@ -93,7 +93,7 @@ exports[`RevealPrivateCredential handles keyring ID parameter correctly 1`] = ` }, { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", }, ] } @@ -103,7 +103,7 @@ exports[`RevealPrivateCredential handles keyring ID parameter correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -118,7 +118,7 @@ exports[`RevealPrivateCredential handles keyring ID parameter correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -135,7 +135,7 @@ exports[`RevealPrivateCredential handles keyring ID parameter correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -154,7 +154,7 @@ exports[`RevealPrivateCredential handles keyring ID parameter correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -171,7 +171,7 @@ exports[`RevealPrivateCredential handles keyring ID parameter correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -233,7 +233,7 @@ exports[`RevealPrivateCredential handles keyring ID parameter correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -248,7 +248,7 @@ exports[`RevealPrivateCredential handles keyring ID parameter correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -274,7 +274,7 @@ exports[`RevealPrivateCredential handles keyring ID parameter correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -299,7 +299,7 @@ exports[`RevealPrivateCredential handles keyring ID parameter correctly 1`] = ` "borderRadius": 5, "borderWidth": 2, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "padding": 10, } } @@ -310,7 +310,7 @@ exports[`RevealPrivateCredential handles keyring ID parameter correctly 1`] = ` style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -366,7 +366,7 @@ exports[`RevealPrivateCredential handles keyring ID parameter correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -477,7 +477,7 @@ exports[`RevealPrivateCredential renders reveal SRP correctly when the credentia }, { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", }, ] } @@ -487,7 +487,7 @@ exports[`RevealPrivateCredential renders reveal SRP correctly when the credentia style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -502,7 +502,7 @@ exports[`RevealPrivateCredential renders reveal SRP correctly when the credentia style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -519,7 +519,7 @@ exports[`RevealPrivateCredential renders reveal SRP correctly when the credentia style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -538,7 +538,7 @@ exports[`RevealPrivateCredential renders reveal SRP correctly when the credentia style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -555,7 +555,7 @@ exports[`RevealPrivateCredential renders reveal SRP correctly when the credentia style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -617,7 +617,7 @@ exports[`RevealPrivateCredential renders reveal SRP correctly when the credentia style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -632,7 +632,7 @@ exports[`RevealPrivateCredential renders reveal SRP correctly when the credentia style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -658,7 +658,7 @@ exports[`RevealPrivateCredential renders reveal SRP correctly when the credentia style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -683,7 +683,7 @@ exports[`RevealPrivateCredential renders reveal SRP correctly when the credentia "borderRadius": 5, "borderWidth": 2, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "padding": 10, } } @@ -694,7 +694,7 @@ exports[`RevealPrivateCredential renders reveal SRP correctly when the credentia style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -750,7 +750,7 @@ exports[`RevealPrivateCredential renders reveal SRP correctly when the credentia style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -861,7 +861,7 @@ exports[`RevealPrivateCredential renders reveal SRP correctly when the credentia }, { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", }, ] } @@ -871,7 +871,7 @@ exports[`RevealPrivateCredential renders reveal SRP correctly when the credentia style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -886,7 +886,7 @@ exports[`RevealPrivateCredential renders reveal SRP correctly when the credentia style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -903,7 +903,7 @@ exports[`RevealPrivateCredential renders reveal SRP correctly when the credentia style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -922,7 +922,7 @@ exports[`RevealPrivateCredential renders reveal SRP correctly when the credentia style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -939,7 +939,7 @@ exports[`RevealPrivateCredential renders reveal SRP correctly when the credentia style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1001,7 +1001,7 @@ exports[`RevealPrivateCredential renders reveal SRP correctly when the credentia style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1016,7 +1016,7 @@ exports[`RevealPrivateCredential renders reveal SRP correctly when the credentia style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1042,7 +1042,7 @@ exports[`RevealPrivateCredential renders reveal SRP correctly when the credentia style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1067,7 +1067,7 @@ exports[`RevealPrivateCredential renders reveal SRP correctly when the credentia "borderRadius": 5, "borderWidth": 2, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "padding": 10, } } @@ -1078,7 +1078,7 @@ exports[`RevealPrivateCredential renders reveal SRP correctly when the credentia style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1134,7 +1134,7 @@ exports[`RevealPrivateCredential renders reveal SRP correctly when the credentia style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1245,7 +1245,7 @@ exports[`RevealPrivateCredential renders reveal private key correctly 1`] = ` }, { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", }, ] } @@ -1289,7 +1289,7 @@ exports[`RevealPrivateCredential renders reveal private key correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1329,7 +1329,7 @@ exports[`RevealPrivateCredential renders reveal private key correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1475,7 +1475,7 @@ exports[`RevealPrivateCredential renders reveal private key correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1489,7 +1489,7 @@ exports[`RevealPrivateCredential renders reveal private key correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1514,7 +1514,7 @@ exports[`RevealPrivateCredential renders reveal private key correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1539,7 +1539,7 @@ exports[`RevealPrivateCredential renders reveal private key correctly 1`] = ` "borderRadius": 5, "borderWidth": 2, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "padding": 10, } } @@ -1550,7 +1550,7 @@ exports[`RevealPrivateCredential renders reveal private key correctly 1`] = ` style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1606,7 +1606,7 @@ exports[`RevealPrivateCredential renders reveal private key correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1717,7 +1717,7 @@ exports[`RevealPrivateCredential renders with a custom selectedAddress 1`] = ` }, { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", }, ] } @@ -1761,7 +1761,7 @@ exports[`RevealPrivateCredential renders with a custom selectedAddress 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1801,7 +1801,7 @@ exports[`RevealPrivateCredential renders with a custom selectedAddress 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1947,7 +1947,7 @@ exports[`RevealPrivateCredential renders with a custom selectedAddress 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1961,7 +1961,7 @@ exports[`RevealPrivateCredential renders with a custom selectedAddress 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1986,7 +1986,7 @@ exports[`RevealPrivateCredential renders with a custom selectedAddress 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2011,7 +2011,7 @@ exports[`RevealPrivateCredential renders with a custom selectedAddress 1`] = ` "borderRadius": 5, "borderWidth": 2, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "padding": 10, } } @@ -2022,7 +2022,7 @@ exports[`RevealPrivateCredential renders with a custom selectedAddress 1`] = ` style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2078,7 +2078,7 @@ exports[`RevealPrivateCredential renders with a custom selectedAddress 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/Root/FontLoadingGate.tsx b/app/components/Views/Root/FontLoadingGate.tsx deleted file mode 100644 index 501832ccac10..000000000000 --- a/app/components/Views/Root/FontLoadingGate.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react'; -import { useFontPreloader } from '../../../hooks/useFontPreloader'; -import FoxLoader from '../../UI/FoxLoader'; - -interface FontLoadingGateProps { - children: React.ReactNode; -} - -const FontLoadingGate: React.FC = ({ children }) => { - const fontsLoaded = useFontPreloader(); - - if (!fontsLoaded) { - return ; // Now has theme context! - } - - return <>{children}; -}; - -export default FontLoadingGate; diff --git a/app/components/Views/Root/index.tsx b/app/components/Views/Root/index.tsx index 913b7c7ad52b..94922c42099a 100644 --- a/app/components/Views/Root/index.tsx +++ b/app/components/Views/Root/index.tsx @@ -14,7 +14,7 @@ import { RootProps } from './types'; import NavigationProvider from '../../Nav/NavigationProvider'; import ControllersGate from '../../Nav/ControllersGate'; import { isTest } from '../../../util/test/utils'; -import FontLoadingGate from './FontLoadingGate'; + import { FeatureFlagOverrideProvider } from '../../../contexts/FeatureFlagOverrideContext'; ///: BEGIN:ONLY_INCLUDE_IF(preinstalled-snaps,external-snaps) import { SnapsExecutionWebView } from '../../../lib/snaps'; @@ -80,10 +80,8 @@ const Root = ({ foxCode }: RootProps) => { - - - - + + diff --git a/app/components/Views/Settings/AdvancedSettings/FiatOnTestnetsFriction/__snapshots__/FiatOnTestnetsFriction.test.tsx.snap b/app/components/Views/Settings/AdvancedSettings/FiatOnTestnetsFriction/__snapshots__/FiatOnTestnetsFriction.test.tsx.snap index d4df79cbfdbc..62348b70330e 100644 --- a/app/components/Views/Settings/AdvancedSettings/FiatOnTestnetsFriction/__snapshots__/FiatOnTestnetsFriction.test.tsx.snap +++ b/app/components/Views/Settings/AdvancedSettings/FiatOnTestnetsFriction/__snapshots__/FiatOnTestnetsFriction.test.tsx.snap @@ -145,7 +145,7 @@ exports[`Show fiat on testnets friction bottom sheet should render 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -173,7 +173,7 @@ exports[`Show fiat on testnets friction bottom sheet should render 1`] = ` undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "fontWeight": "700", "letterSpacing": 0, @@ -189,7 +189,7 @@ exports[`Show fiat on testnets friction bottom sheet should render 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -227,7 +227,7 @@ exports[`Show fiat on testnets friction bottom sheet should render 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -269,7 +269,7 @@ exports[`Show fiat on testnets friction bottom sheet should render 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -349,7 +349,7 @@ exports[`Show fiat on testnets friction bottom sheet should render 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -387,7 +387,7 @@ exports[`Show fiat on testnets friction bottom sheet should render 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/Settings/AdvancedSettings/__snapshots__/index.test.tsx.snap b/app/components/Views/Settings/AdvancedSettings/__snapshots__/index.test.tsx.snap index 141ad570c13c..154c373f9804 100644 --- a/app/components/Views/Settings/AdvancedSettings/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/Settings/AdvancedSettings/__snapshots__/index.test.tsx.snap @@ -87,7 +87,7 @@ exports[`AdvancedSettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -101,7 +101,7 @@ exports[`AdvancedSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -140,7 +140,7 @@ exports[`AdvancedSettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -172,7 +172,7 @@ exports[`AdvancedSettings should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -226,7 +226,7 @@ exports[`AdvancedSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -243,7 +243,7 @@ exports[`AdvancedSettings should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -275,7 +275,7 @@ exports[`AdvancedSettings should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -329,7 +329,7 @@ exports[`AdvancedSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -361,7 +361,7 @@ exports[`AdvancedSettings should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -415,7 +415,7 @@ exports[`AdvancedSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -432,7 +432,7 @@ exports[`AdvancedSettings should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -464,7 +464,7 @@ exports[`AdvancedSettings should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -517,7 +517,7 @@ exports[`AdvancedSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -549,7 +549,7 @@ exports[`AdvancedSettings should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -602,7 +602,7 @@ exports[`AdvancedSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -634,7 +634,7 @@ exports[`AdvancedSettings should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -688,7 +688,7 @@ exports[`AdvancedSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -711,7 +711,7 @@ exports[`AdvancedSettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -725,7 +725,7 @@ exports[`AdvancedSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -764,7 +764,7 @@ exports[`AdvancedSettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/Settings/AppInformation/__snapshots__/index.test.tsx.snap b/app/components/Views/Settings/AppInformation/__snapshots__/index.test.tsx.snap index 900a671eaab5..9a1887632431 100644 --- a/app/components/Views/Settings/AppInformation/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/Settings/AppInformation/__snapshots__/index.test.tsx.snap @@ -227,7 +227,7 @@ exports[`AppInformation renders correctly with snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -473,7 +473,7 @@ exports[`AppInformation renders correctly with snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, "marginBottom": 20, "marginTop": 20, @@ -485,7 +485,7 @@ exports[`AppInformation renders correctly with snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, "marginBottom": 20, "textAlign": "left", @@ -499,7 +499,7 @@ exports[`AppInformation renders correctly with snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, "marginBottom": 20, "textAlign": "left", @@ -516,7 +516,7 @@ exports[`AppInformation renders correctly with snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, "marginBottom": 20, "textAlign": "left", @@ -533,7 +533,7 @@ exports[`AppInformation renders correctly with snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, "marginBottom": 20, "textAlign": "left", @@ -550,7 +550,7 @@ exports[`AppInformation renders correctly with snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, "marginBottom": 20, "textAlign": "left", @@ -579,7 +579,7 @@ exports[`AppInformation renders correctly with snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, "marginBottom": 20, "textAlign": "left", @@ -596,7 +596,7 @@ exports[`AppInformation renders correctly with snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, "marginBottom": 20, "textAlign": "left", @@ -613,7 +613,7 @@ exports[`AppInformation renders correctly with snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 18, "marginBottom": 20, "textAlign": "left", diff --git a/app/components/Views/Settings/AutoDetectNFTSettings/__snapshots__/index.test.tsx.snap b/app/components/Views/Settings/AutoDetectNFTSettings/__snapshots__/index.test.tsx.snap index efe992407cc9..a633abd4197c 100644 --- a/app/components/Views/Settings/AutoDetectNFTSettings/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/Settings/AutoDetectNFTSettings/__snapshots__/index.test.tsx.snap @@ -22,7 +22,7 @@ exports[`AutoDetectNFTSettings render matches snapshot 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -73,7 +73,7 @@ exports[`AutoDetectNFTSettings render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/Settings/AutoDetectTokensSettings/__snapshots__/index.test.tsx.snap b/app/components/Views/Settings/AutoDetectTokensSettings/__snapshots__/index.test.tsx.snap index f8d2e29a078b..1b6266e9586e 100644 --- a/app/components/Views/Settings/AutoDetectTokensSettings/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/Settings/AutoDetectTokensSettings/__snapshots__/index.test.tsx.snap @@ -22,7 +22,7 @@ exports[`AssetSettings render matches snapshot 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -75,7 +75,7 @@ exports[`AssetSettings render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/Settings/BatchAccountBalanceSettings/__snapshots__/index.test.tsx.snap b/app/components/Views/Settings/BatchAccountBalanceSettings/__snapshots__/index.test.tsx.snap index 11738fcc2caf..a7dcbcf01f5c 100644 --- a/app/components/Views/Settings/BatchAccountBalanceSettings/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/Settings/BatchAccountBalanceSettings/__snapshots__/index.test.tsx.snap @@ -23,7 +23,7 @@ exports[`BatchAccountBalanceSettings should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -74,7 +74,7 @@ exports[`BatchAccountBalanceSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/Settings/Contacts/AmbiguousAddressSheet/__snapshots__/AmbiguousAddressSheet.test.tsx.snap b/app/components/Views/Settings/Contacts/AmbiguousAddressSheet/__snapshots__/AmbiguousAddressSheet.test.tsx.snap index 0c83fd15eea8..2fb63035d717 100644 --- a/app/components/Views/Settings/Contacts/AmbiguousAddressSheet/__snapshots__/AmbiguousAddressSheet.test.tsx.snap +++ b/app/components/Views/Settings/Contacts/AmbiguousAddressSheet/__snapshots__/AmbiguousAddressSheet.test.tsx.snap @@ -444,7 +444,7 @@ exports[`AmbiguousAddressSheet should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -473,7 +473,7 @@ exports[`AmbiguousAddressSheet should render correctly 1`] = ` undefined, { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "fontWeight": "700", "letterSpacing": 0, @@ -489,7 +489,7 @@ exports[`AmbiguousAddressSheet should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -518,7 +518,7 @@ exports[`AmbiguousAddressSheet should render correctly 1`] = ` undefined, { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "letterSpacing": 0, @@ -532,7 +532,7 @@ exports[`AmbiguousAddressSheet should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -601,7 +601,7 @@ exports[`AmbiguousAddressSheet should render correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/Settings/Contacts/ContactForm/__snapshots__/index.test.tsx.snap b/app/components/Views/Settings/Contacts/ContactForm/__snapshots__/index.test.tsx.snap index e419f3b49476..2c26ede7e28b 100644 --- a/app/components/Views/Settings/Contacts/ContactForm/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/Settings/Contacts/ContactForm/__snapshots__/index.test.tsx.snap @@ -59,7 +59,7 @@ exports[`ContactForm renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "paddingVertical": 12, } @@ -88,7 +88,7 @@ exports[`ContactForm renders correctly 1`] = ` "color": "#121314", "flex": 1, "flexDirection": "row", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "padding": 10, }, @@ -103,7 +103,7 @@ exports[`ContactForm renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "paddingVertical": 12, } @@ -122,7 +122,7 @@ exports[`ContactForm renders correctly 1`] = ` "color": "#121314", "flex": 1, "flexDirection": "row", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "padding": 10, }, @@ -153,7 +153,7 @@ exports[`ContactForm renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "padding": 0, "paddingRight": 8, }, @@ -203,7 +203,7 @@ exports[`ContactForm renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "paddingVertical": 12, } @@ -222,7 +222,7 @@ exports[`ContactForm renders correctly 1`] = ` "color": "#121314", "flex": 1, "flexDirection": "row", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "padding": 10, }, @@ -253,7 +253,7 @@ exports[`ContactForm renders correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "padding": 0, "paddingRight": 8, }, @@ -445,7 +445,7 @@ exports[`ContactForm renders correctly 1`] = ` }, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, diff --git a/app/components/Views/Settings/DeveloperOptions/__snapshots__/index.test.tsx.snap b/app/components/Views/Settings/DeveloperOptions/__snapshots__/index.test.tsx.snap index 7183ad3ca804..b7d3a24e82e7 100644 --- a/app/components/Views/Settings/DeveloperOptions/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/Settings/DeveloperOptions/__snapshots__/index.test.tsx.snap @@ -227,7 +227,7 @@ exports[`DeveloperOptions renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -439,7 +439,7 @@ exports[`DeveloperOptions renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -454,7 +454,7 @@ exports[`DeveloperOptions renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -493,7 +493,7 @@ exports[`DeveloperOptions renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -508,7 +508,7 @@ exports[`DeveloperOptions renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -523,7 +523,7 @@ exports[`DeveloperOptions renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -562,7 +562,7 @@ exports[`DeveloperOptions renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -585,7 +585,7 @@ exports[`DeveloperOptions renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -610,7 +610,7 @@ exports[`DeveloperOptions renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -638,7 +638,7 @@ exports[`DeveloperOptions renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -654,7 +654,7 @@ exports[`DeveloperOptions renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -669,7 +669,7 @@ exports[`DeveloperOptions renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -708,7 +708,7 @@ exports[`DeveloperOptions renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -723,7 +723,7 @@ exports[`DeveloperOptions renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -738,7 +738,7 @@ exports[`DeveloperOptions renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -777,7 +777,7 @@ exports[`DeveloperOptions renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -792,7 +792,7 @@ exports[`DeveloperOptions renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -807,7 +807,7 @@ exports[`DeveloperOptions renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -846,7 +846,7 @@ exports[`DeveloperOptions renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/Settings/DisplayNFTMediaSettings/__snapshots__/index.test.tsx.snap b/app/components/Views/Settings/DisplayNFTMediaSettings/__snapshots__/index.test.tsx.snap index 38262356971a..586fdce4213e 100644 --- a/app/components/Views/Settings/DisplayNFTMediaSettings/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/Settings/DisplayNFTMediaSettings/__snapshots__/index.test.tsx.snap @@ -22,7 +22,7 @@ exports[`DisplayNFTMediaSettings render matches snapshot 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -73,7 +73,7 @@ exports[`DisplayNFTMediaSettings render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/Settings/ExperimentalSettings/__snapshots__/index.test.tsx.snap b/app/components/Views/Settings/ExperimentalSettings/__snapshots__/index.test.tsx.snap index 391f475b86d3..8c6e6a1d3cd9 100644 --- a/app/components/Views/Settings/ExperimentalSettings/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/Settings/ExperimentalSettings/__snapshots__/index.test.tsx.snap @@ -17,7 +17,7 @@ exports[`ExperimentalSettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -31,7 +31,7 @@ exports[`ExperimentalSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -70,7 +70,7 @@ exports[`ExperimentalSettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -92,7 +92,7 @@ exports[`ExperimentalSettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -130,7 +130,7 @@ exports[`ExperimentalSettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/Settings/IPFSGatewaySettings/__snapshots__/index.test.tsx.snap b/app/components/Views/Settings/IPFSGatewaySettings/__snapshots__/index.test.tsx.snap index 5e4502e2ad35..b527861d6e42 100644 --- a/app/components/Views/Settings/IPFSGatewaySettings/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/Settings/IPFSGatewaySettings/__snapshots__/index.test.tsx.snap @@ -22,7 +22,7 @@ exports[`IPFSGatewaySettings render matches snapshot 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -73,7 +73,7 @@ exports[`IPFSGatewaySettings render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -95,7 +95,7 @@ exports[`IPFSGatewaySettings render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/Settings/Identity/__snapshots__/BackupAndSyncSettings.test.tsx.snap b/app/components/Views/Settings/Identity/__snapshots__/BackupAndSyncSettings.test.tsx.snap index 33ab202a7551..d8a9af59d04b 100644 --- a/app/components/Views/Settings/Identity/__snapshots__/BackupAndSyncSettings.test.tsx.snap +++ b/app/components/Views/Settings/Identity/__snapshots__/BackupAndSyncSettings.test.tsx.snap @@ -34,7 +34,7 @@ exports[`BackupAndSyncSettings renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -72,7 +72,7 @@ exports[`BackupAndSyncSettings renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -86,7 +86,7 @@ exports[`BackupAndSyncSettings renders correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -121,7 +121,7 @@ exports[`BackupAndSyncSettings renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -135,7 +135,7 @@ exports[`BackupAndSyncSettings renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -181,7 +181,7 @@ exports[`BackupAndSyncSettings renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -252,7 +252,7 @@ exports[`BackupAndSyncSettings renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/Settings/NetworkDetailsCheckSettings/__snapshots__/index.test.tsx.snap b/app/components/Views/Settings/NetworkDetailsCheckSettings/__snapshots__/index.test.tsx.snap index e9455b0c1ff6..d92b0182148f 100644 --- a/app/components/Views/Settings/NetworkDetailsCheckSettings/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/Settings/NetworkDetailsCheckSettings/__snapshots__/index.test.tsx.snap @@ -23,7 +23,7 @@ exports[`NetworkDetailsCheckSettings should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -74,7 +74,7 @@ exports[`NetworkDetailsCheckSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -88,7 +88,7 @@ exports[`NetworkDetailsCheckSettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/Settings/NotificationsSettings/CustomNotificationsRow/__snapshots__/index.test.tsx.snap b/app/components/Views/Settings/NotificationsSettings/CustomNotificationsRow/__snapshots__/index.test.tsx.snap index a790fcefe700..aa5907fd005c 100644 --- a/app/components/Views/Settings/NotificationsSettings/CustomNotificationsRow/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/Settings/NotificationsSettings/CustomNotificationsRow/__snapshots__/index.test.tsx.snap @@ -38,7 +38,7 @@ exports[`CustomNotificationsRow should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -53,7 +53,7 @@ exports[`CustomNotificationsRow should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/Settings/NotificationsSettings/__snapshots__/index.test.tsx.snap b/app/components/Views/Settings/NotificationsSettings/__snapshots__/index.test.tsx.snap index 74b19e651066..ee58e226afd8 100644 --- a/app/components/Views/Settings/NotificationsSettings/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/Settings/NotificationsSettings/__snapshots__/index.test.tsx.snap @@ -27,7 +27,7 @@ exports[`NotificationsSettings render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -77,7 +77,7 @@ exports[`NotificationsSettings render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -92,7 +92,7 @@ exports[`NotificationsSettings render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/Settings/PermissionsSettings/PermissionItem/__snapshots__/PermissionItem.test.tsx.snap b/app/components/Views/Settings/PermissionsSettings/PermissionItem/__snapshots__/PermissionItem.test.tsx.snap index 9ccb2968103c..0da140b6f357 100644 --- a/app/components/Views/Settings/PermissionsSettings/PermissionItem/__snapshots__/PermissionItem.test.tsx.snap +++ b/app/components/Views/Settings/PermissionsSettings/PermissionItem/__snapshots__/PermissionItem.test.tsx.snap @@ -99,7 +99,7 @@ exports[`PermissionItem renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -123,7 +123,7 @@ exports[`PermissionItem renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -139,7 +139,7 @@ exports[`PermissionItem renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -154,7 +154,7 @@ exports[`PermissionItem renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/Settings/SecuritySettings/Sections/MetaMetricsAndDataCollectionSection/__snapshots__/MetaMetricsAndDataCollectionSection.test.tsx.snap b/app/components/Views/Settings/SecuritySettings/Sections/MetaMetricsAndDataCollectionSection/__snapshots__/MetaMetricsAndDataCollectionSection.test.tsx.snap index ceeade478d29..e7ed7d28b313 100644 --- a/app/components/Views/Settings/SecuritySettings/Sections/MetaMetricsAndDataCollectionSection/__snapshots__/MetaMetricsAndDataCollectionSection.test.tsx.snap +++ b/app/components/Views/Settings/SecuritySettings/Sections/MetaMetricsAndDataCollectionSection/__snapshots__/MetaMetricsAndDataCollectionSection.test.tsx.snap @@ -334,7 +334,7 @@ exports[`MetaMetricsAndDataCollectionSection render matches snapshot 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -386,7 +386,7 @@ exports[`MetaMetricsAndDataCollectionSection render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -406,7 +406,7 @@ exports[`MetaMetricsAndDataCollectionSection render matches snapshot 1`] = ` { "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -419,7 +419,7 @@ exports[`MetaMetricsAndDataCollectionSection render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -453,7 +453,7 @@ exports[`MetaMetricsAndDataCollectionSection render matches snapshot 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -505,7 +505,7 @@ exports[`MetaMetricsAndDataCollectionSection render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/Settings/SecuritySettings/Sections/__snapshots__/BlockaidSettings.test.tsx.snap b/app/components/Views/Settings/SecuritySettings/Sections/__snapshots__/BlockaidSettings.test.tsx.snap index eb4463a17780..ac426d852e53 100644 --- a/app/components/Views/Settings/SecuritySettings/Sections/__snapshots__/BlockaidSettings.test.tsx.snap +++ b/app/components/Views/Settings/SecuritySettings/Sections/__snapshots__/BlockaidSettings.test.tsx.snap @@ -18,7 +18,7 @@ exports[`BlockaidSettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -61,7 +61,7 @@ exports[`BlockaidSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -77,7 +77,7 @@ exports[`BlockaidSettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/Settings/SecuritySettings/__snapshots__/SecuritySettings.test.tsx.snap b/app/components/Views/Settings/SecuritySettings/__snapshots__/SecuritySettings.test.tsx.snap index 56a8d1614cfa..a88e6271bcca 100644 --- a/app/components/Views/Settings/SecuritySettings/__snapshots__/SecuritySettings.test.tsx.snap +++ b/app/components/Views/Settings/SecuritySettings/__snapshots__/SecuritySettings.test.tsx.snap @@ -37,7 +37,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -65,7 +65,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -79,7 +79,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -94,7 +94,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -154,7 +154,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -192,7 +192,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -216,7 +216,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -230,7 +230,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -268,7 +268,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -292,7 +292,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -306,7 +306,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -357,7 +357,7 @@ exports[`SecuritySettings should render correctly 1`] = ` "alignSelf": "flex-start", "color": "#121314", "flex": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "paddingBottom": 10, "paddingHorizontal": 15, @@ -430,7 +430,7 @@ exports[`SecuritySettings should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -481,7 +481,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -506,7 +506,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -520,7 +520,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -558,7 +558,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -585,7 +585,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -628,7 +628,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -644,7 +644,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -669,7 +669,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -686,7 +686,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -718,7 +718,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -755,7 +755,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -769,7 +769,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -787,7 +787,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -810,7 +810,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -824,7 +824,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -869,7 +869,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -896,7 +896,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -910,7 +910,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -956,7 +956,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -982,7 +982,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -996,7 +996,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1043,7 +1043,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1067,7 +1067,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1081,7 +1081,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1128,7 +1128,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1146,7 +1146,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1178,7 +1178,7 @@ exports[`SecuritySettings should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1229,7 +1229,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1243,7 +1243,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1262,7 +1262,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1294,7 +1294,7 @@ exports[`SecuritySettings should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1345,7 +1345,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1378,7 +1378,7 @@ exports[`SecuritySettings should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1428,7 +1428,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1447,7 +1447,7 @@ exports[`SecuritySettings should render correctly 1`] = ` { "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1460,7 +1460,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1477,7 +1477,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1508,7 +1508,7 @@ exports[`SecuritySettings should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1559,7 +1559,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1592,7 +1592,7 @@ exports[`SecuritySettings should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1643,7 +1643,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1676,7 +1676,7 @@ exports[`SecuritySettings should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1727,7 +1727,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1749,7 +1749,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1782,7 +1782,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1814,7 +1814,7 @@ exports[`SecuritySettings should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1866,7 +1866,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1886,7 +1886,7 @@ exports[`SecuritySettings should render correctly 1`] = ` { "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1899,7 +1899,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1933,7 +1933,7 @@ exports[`SecuritySettings should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1985,7 +1985,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2008,7 +2008,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2022,7 +2022,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2035,7 +2035,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2055,7 +2055,7 @@ exports[`SecuritySettings should render correctly 1`] = ` { "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2068,7 +2068,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2084,7 +2084,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2099,7 +2099,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2119,7 +2119,7 @@ exports[`SecuritySettings should render correctly 1`] = ` { "backgroundColor": "transparent", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2132,7 +2132,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2180,7 +2180,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2205,7 +2205,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -2219,7 +2219,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2268,7 +2268,7 @@ exports[`SecuritySettings should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/Settings/__snapshots__/index.test.tsx.snap b/app/components/Views/Settings/__snapshots__/index.test.tsx.snap index d40f5f82d09f..07e341e1ba55 100644 --- a/app/components/Views/Settings/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/Settings/__snapshots__/index.test.tsx.snap @@ -64,7 +64,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -78,7 +78,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -158,7 +158,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -172,7 +172,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -252,7 +252,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -266,7 +266,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -346,7 +346,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -360,7 +360,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -440,7 +440,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -454,7 +454,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -534,7 +534,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -548,7 +548,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -628,7 +628,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -642,7 +642,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -722,7 +722,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -736,7 +736,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -816,7 +816,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -830,7 +830,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -910,7 +910,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -924,7 +924,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1004,7 +1004,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1018,7 +1018,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1098,7 +1098,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1177,7 +1177,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1191,7 +1191,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1271,7 +1271,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1319,7 +1319,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1367,7 +1367,7 @@ exports[`Settings renders settings component with all sections 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/ShowDisplayMediaNFTSheet/__snapshots__/ShowDisplayNFTMediaSheet.test.tsx.snap b/app/components/Views/ShowDisplayMediaNFTSheet/__snapshots__/ShowDisplayNFTMediaSheet.test.tsx.snap index d3e6e122e960..fc6c6cb30001 100644 --- a/app/components/Views/ShowDisplayMediaNFTSheet/__snapshots__/ShowDisplayNFTMediaSheet.test.tsx.snap +++ b/app/components/Views/ShowDisplayMediaNFTSheet/__snapshots__/ShowDisplayNFTMediaSheet.test.tsx.snap @@ -453,7 +453,7 @@ exports[`ShowNftSheet render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -476,7 +476,7 @@ exports[`ShowNftSheet render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -491,7 +491,7 @@ exports[`ShowNftSheet render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -511,7 +511,7 @@ exports[`ShowNftSheet render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -525,7 +525,7 @@ exports[`ShowNftSheet render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -574,7 +574,7 @@ exports[`ShowNftSheet render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -612,7 +612,7 @@ exports[`ShowNftSheet render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/ShowIpfsGatewaySheet/__snapshots__/ShowIpfsGatewaySheet.test.tsx.snap b/app/components/Views/ShowIpfsGatewaySheet/__snapshots__/ShowIpfsGatewaySheet.test.tsx.snap index da0c9b61beec..af7366ee7552 100644 --- a/app/components/Views/ShowIpfsGatewaySheet/__snapshots__/ShowIpfsGatewaySheet.test.tsx.snap +++ b/app/components/Views/ShowIpfsGatewaySheet/__snapshots__/ShowIpfsGatewaySheet.test.tsx.snap @@ -453,7 +453,7 @@ exports[`ShowIpfsGatewaySheet should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -476,7 +476,7 @@ exports[`ShowIpfsGatewaySheet should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -494,7 +494,7 @@ exports[`ShowIpfsGatewaySheet should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -509,7 +509,7 @@ exports[`ShowIpfsGatewaySheet should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -527,7 +527,7 @@ exports[`ShowIpfsGatewaySheet should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -577,7 +577,7 @@ exports[`ShowIpfsGatewaySheet should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -615,7 +615,7 @@ exports[`ShowIpfsGatewaySheet should render correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/ShowTokenIdSheet/__snapshots__/ShowTokenIdSheet.test.tsx.snap b/app/components/Views/ShowTokenIdSheet/__snapshots__/ShowTokenIdSheet.test.tsx.snap index 4c547efcebe2..37fcde227f36 100644 --- a/app/components/Views/ShowTokenIdSheet/__snapshots__/ShowTokenIdSheet.test.tsx.snap +++ b/app/components/Views/ShowTokenIdSheet/__snapshots__/ShowTokenIdSheet.test.tsx.snap @@ -453,7 +453,7 @@ exports[`ShowTokenId should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -484,7 +484,7 @@ exports[`ShowTokenId should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/SocialLoginIosUser/__snapshots__/index.test.tsx.snap b/app/components/Views/SocialLoginIosUser/__snapshots__/index.test.tsx.snap index 1b69c6c102c2..fa3ed2d80543 100644 --- a/app/components/Views/SocialLoginIosUser/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/SocialLoginIosUser/__snapshots__/index.test.tsx.snap @@ -85,7 +85,7 @@ exports[`SocialLoginIosUser SocialLoginSuccessExistingUser renders match snapsho style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -133,7 +133,7 @@ exports[`SocialLoginIosUser SocialLoginSuccessExistingUser renders match snapsho style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -233,7 +233,7 @@ exports[`SocialLoginIosUser SocialLoginSuccessExistingUser renders match snapsho style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -281,7 +281,7 @@ exports[`SocialLoginIosUser SocialLoginSuccessExistingUser renders match snapsho style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -381,7 +381,7 @@ exports[`SocialLoginIosUser SocialLoginSuccessNewUser renders match snapshot 1`] style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -429,7 +429,7 @@ exports[`SocialLoginIosUser SocialLoginSuccessNewUser renders match snapshot 1`] style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -529,7 +529,7 @@ exports[`SocialLoginIosUser SocialLoginSuccessNewUser renders match snapshot wit style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -577,7 +577,7 @@ exports[`SocialLoginIosUser SocialLoginSuccessNewUser renders match snapshot wit style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/SrpInput/Input/__snapshots__/index.test.tsx.snap b/app/components/Views/SrpInput/Input/__snapshots__/index.test.tsx.snap index 4ffb3b9b297d..c1cd4c575815 100644 --- a/app/components/Views/SrpInput/Input/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/SrpInput/Input/__snapshots__/index.test.tsx.snap @@ -12,7 +12,7 @@ exports[`SRP -> Input should render correctly 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 24, diff --git a/app/components/Views/SrpInput/__snapshots__/index.test.tsx.snap b/app/components/Views/SrpInput/__snapshots__/index.test.tsx.snap index dfd709470b4c..243ac7afd557 100644 --- a/app/components/Views/SrpInput/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/SrpInput/__snapshots__/index.test.tsx.snap @@ -60,7 +60,7 @@ exports[`SrpInput renders default settings correctly 1`] = ` "borderColor": "transparent", "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "fontWeight": "400", "height": 24, diff --git a/app/components/Views/SuccessErrorSheet/__snapshots__/index.test.tsx.snap b/app/components/Views/SuccessErrorSheet/__snapshots__/index.test.tsx.snap index 764be5cf7830..fe8de642b23c 100644 --- a/app/components/Views/SuccessErrorSheet/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/SuccessErrorSheet/__snapshots__/index.test.tsx.snap @@ -35,7 +35,7 @@ exports[`SuccessErrorSheet render matches snapshot 1`] = ` { "alignSelf": "center", "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -53,7 +53,7 @@ exports[`SuccessErrorSheet render matches snapshot 1`] = ` { "alignSelf": "center", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -108,7 +108,7 @@ exports[`SuccessErrorSheet render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -145,7 +145,7 @@ exports[`SuccessErrorSheet render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/TermsAndConditions/__snapshots__/index.test.tsx.snap b/app/components/Views/TermsAndConditions/__snapshots__/index.test.tsx.snap index 29075b00114f..4beba90d293c 100644 --- a/app/components/Views/TermsAndConditions/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/TermsAndConditions/__snapshots__/index.test.tsx.snap @@ -9,7 +9,7 @@ exports[`TermsAndConditions should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, "textAlign": "center", } diff --git a/app/components/Views/TrendingView/components/SectionCarrousel/SectionCarrousel.tsx b/app/components/Views/TrendingView/components/SectionCarrousel/SectionCarrousel.tsx index 98b770f00951..087c1ea12efa 100644 --- a/app/components/Views/TrendingView/components/SectionCarrousel/SectionCarrousel.tsx +++ b/app/components/Views/TrendingView/components/SectionCarrousel/SectionCarrousel.tsx @@ -2,7 +2,7 @@ import { Box, BoxBorderColor } from '@metamask/design-system-react-native'; import { useTailwind } from '@metamask/design-system-twrnc-preset'; import React, { useRef, useEffect } from 'react'; import { Dimensions } from 'react-native'; -import { FlashList, FlashListRef } from '@shopify/flash-list'; +import { FlashList } from '@shopify/flash-list'; import { SectionId, SECTIONS_CONFIG } from '../../config/sections.config'; import { useNavigation } from '@react-navigation/native'; @@ -22,7 +22,7 @@ const SectionCarrousel: React.FC = ({ }) => { const navigation = useNavigation(); const tw = useTailwind(); - const flashListRef = useRef>(null); + const flashListRef = useRef>(null); const section = SECTIONS_CONFIG[sectionId]; const { data, isLoading, refetch } = section.useSectionData(); diff --git a/app/components/Views/UnifiedTransactionsView/UnifiedTransactionsView.tsx b/app/components/Views/UnifiedTransactionsView/UnifiedTransactionsView.tsx index 0e636072ee6d..b3596f1b3ddc 100644 --- a/app/components/Views/UnifiedTransactionsView/UnifiedTransactionsView.tsx +++ b/app/components/Views/UnifiedTransactionsView/UnifiedTransactionsView.tsx @@ -3,7 +3,7 @@ import { SupportedCaipChainId } from '@metamask/multichain-network-controller'; import { SmartTransaction } from '@metamask/smart-transactions-controller'; import { TransactionMeta } from '@metamask/transaction-controller'; import { NavigationProp, useNavigation } from '@react-navigation/native'; -import { FlashList, FlashListRef } from '@shopify/flash-list'; +import { FlashList } from '@shopify/flash-list'; import React, { useCallback, useMemo, useRef, useState } from 'react'; import { RefreshControl, View } from 'react-native'; import { KeyboardAwareScrollView } from 'react-native-keyboard-aware-scroll-view'; @@ -534,7 +534,7 @@ const UnifiedTransactionsView = ({ } }, []); - const listRef = useRef>(null); + const listRef = useRef>(null); const renderEmptyList = () => ( diff --git a/app/components/Views/Wallet/__snapshots__/index.test.tsx.snap b/app/components/Views/Wallet/__snapshots__/index.test.tsx.snap index 373d1dca6136..8a66b41e06a7 100644 --- a/app/components/Views/Wallet/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/Wallet/__snapshots__/index.test.tsx.snap @@ -92,7 +92,7 @@ exports[`Wallet Conditional Rendering should render banner when basic functional style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -777,7 +777,7 @@ exports[`Wallet Conditional Rendering should render banner when basic functional style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -834,7 +834,7 @@ exports[`Wallet Conditional Rendering should render banner when basic functional style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -892,7 +892,7 @@ exports[`Wallet Conditional Rendering should render banner when basic functional style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -907,7 +907,7 @@ exports[`Wallet Conditional Rendering should render banner when basic functional style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -927,7 +927,7 @@ exports[`Wallet Conditional Rendering should render banner when basic functional style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -950,7 +950,7 @@ exports[`Wallet Conditional Rendering should render banner when basic functional style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -989,7 +989,7 @@ exports[`Wallet Conditional Rendering should render banner when basic functional style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1024,7 +1024,7 @@ exports[`Wallet Conditional Rendering should render banner when basic functional style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1074,7 +1074,7 @@ TypeError: Cannot read properties of undefined (reading 'isNftFetchingProgress') style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1112,7 +1112,7 @@ TypeError: Cannot read properties of undefined (reading 'isNftFetchingProgress') style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1150,7 +1150,7 @@ TypeError: Cannot read properties of undefined (reading 'isNftFetchingProgress') style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1267,7 +1267,7 @@ exports[`Wallet Conditional Rendering should render loader when no selected acco style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1952,7 +1952,7 @@ exports[`Wallet Conditional Rendering should render loader when no selected acco style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -2009,7 +2009,7 @@ exports[`Wallet Conditional Rendering should render loader when no selected acco style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2067,7 +2067,7 @@ exports[`Wallet Conditional Rendering should render loader when no selected acco style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2082,7 +2082,7 @@ exports[`Wallet Conditional Rendering should render loader when no selected acco style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2102,7 +2102,7 @@ exports[`Wallet Conditional Rendering should render loader when no selected acco style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2125,7 +2125,7 @@ exports[`Wallet Conditional Rendering should render loader when no selected acco style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2164,7 +2164,7 @@ exports[`Wallet Conditional Rendering should render loader when no selected acco style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2199,7 +2199,7 @@ exports[`Wallet Conditional Rendering should render loader when no selected acco style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2249,7 +2249,7 @@ TypeError: Cannot read properties of undefined (reading 'isNftFetchingProgress') style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2287,7 +2287,7 @@ TypeError: Cannot read properties of undefined (reading 'isNftFetchingProgress') style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2325,7 +2325,7 @@ TypeError: Cannot read properties of undefined (reading 'isNftFetchingProgress') style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -2442,7 +2442,7 @@ exports[`Wallet should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3127,7 +3127,7 @@ exports[`Wallet should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -3184,7 +3184,7 @@ exports[`Wallet should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3242,7 +3242,7 @@ exports[`Wallet should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3257,7 +3257,7 @@ exports[`Wallet should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3277,7 +3277,7 @@ exports[`Wallet should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3300,7 +3300,7 @@ exports[`Wallet should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3339,7 +3339,7 @@ exports[`Wallet should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3374,7 +3374,7 @@ exports[`Wallet should render correctly 1`] = ` style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3424,7 +3424,7 @@ TypeError: Cannot read properties of undefined (reading 'isNftFetchingProgress') style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3462,7 +3462,7 @@ TypeError: Cannot read properties of undefined (reading 'isNftFetchingProgress') style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3500,7 +3500,7 @@ TypeError: Cannot read properties of undefined (reading 'isNftFetchingProgress') style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -3617,7 +3617,7 @@ exports[`Wallet should render correctly when Solana support is enabled 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4302,7 +4302,7 @@ exports[`Wallet should render correctly when Solana support is enabled 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -4359,7 +4359,7 @@ exports[`Wallet should render correctly when Solana support is enabled 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4417,7 +4417,7 @@ exports[`Wallet should render correctly when Solana support is enabled 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4432,7 +4432,7 @@ exports[`Wallet should render correctly when Solana support is enabled 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4452,7 +4452,7 @@ exports[`Wallet should render correctly when Solana support is enabled 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4475,7 +4475,7 @@ exports[`Wallet should render correctly when Solana support is enabled 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4514,7 +4514,7 @@ exports[`Wallet should render correctly when Solana support is enabled 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4549,7 +4549,7 @@ exports[`Wallet should render correctly when Solana support is enabled 1`] = ` style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4599,7 +4599,7 @@ TypeError: Cannot read properties of undefined (reading 'isNftFetchingProgress') style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4637,7 +4637,7 @@ TypeError: Cannot read properties of undefined (reading 'isNftFetchingProgress') style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4675,7 +4675,7 @@ TypeError: Cannot read properties of undefined (reading 'isNftFetchingProgress') style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -4792,7 +4792,7 @@ exports[`Wallet should render correctly when there are no detected tokens 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5477,7 +5477,7 @@ exports[`Wallet should render correctly when there are no detected tokens 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -5534,7 +5534,7 @@ exports[`Wallet should render correctly when there are no detected tokens 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5592,7 +5592,7 @@ exports[`Wallet should render correctly when there are no detected tokens 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5607,7 +5607,7 @@ exports[`Wallet should render correctly when there are no detected tokens 1`] = style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5627,7 +5627,7 @@ exports[`Wallet should render correctly when there are no detected tokens 1`] = style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5650,7 +5650,7 @@ exports[`Wallet should render correctly when there are no detected tokens 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5689,7 +5689,7 @@ exports[`Wallet should render correctly when there are no detected tokens 1`] = style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5724,7 +5724,7 @@ exports[`Wallet should render correctly when there are no detected tokens 1`] = style={ { "color": "#ca3542", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5774,7 +5774,7 @@ TypeError: Cannot read properties of undefined (reading 'isNftFetchingProgress') style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5812,7 +5812,7 @@ TypeError: Cannot read properties of undefined (reading 'isNftFetchingProgress') style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -5850,7 +5850,7 @@ TypeError: Cannot read properties of undefined (reading 'isNftFetchingProgress') style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/WalletConnectSessions/__snapshots__/index.test.tsx.snap b/app/components/Views/WalletConnectSessions/__snapshots__/index.test.tsx.snap index c7b81a9a869d..7afac81ce215 100644 --- a/app/components/Views/WalletConnectSessions/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/WalletConnectSessions/__snapshots__/index.test.tsx.snap @@ -227,7 +227,7 @@ exports[`WalletConnectSessions does not render when not ready 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -661,7 +661,7 @@ exports[`WalletConnectSessions renders empty component with no active sessions 1 style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -893,7 +893,7 @@ exports[`WalletConnectSessions renders empty component with no active sessions 1 style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, } } @@ -1143,7 +1143,7 @@ exports[`WalletConnectSessions should render active sessions 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -1442,7 +1442,7 @@ exports[`WalletConnectSessions should render active sessions 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "marginBottom": 10, } @@ -1454,7 +1454,7 @@ exports[`WalletConnectSessions should render active sessions 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "marginBottom": 10, } @@ -1466,7 +1466,7 @@ exports[`WalletConnectSessions should render active sessions 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "marginBottom": 10, } @@ -1556,7 +1556,7 @@ exports[`WalletConnectSessions should render active sessions 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "marginBottom": 10, } @@ -1568,7 +1568,7 @@ exports[`WalletConnectSessions should render active sessions 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "marginBottom": 10, } @@ -1580,7 +1580,7 @@ exports[`WalletConnectSessions should render active sessions 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "marginBottom": 10, } diff --git a/app/components/Views/WalletRecovery/__snapshots__/index.test.tsx.snap b/app/components/Views/WalletRecovery/__snapshots__/index.test.tsx.snap index 0a618f0dd2f5..f5e494623a96 100644 --- a/app/components/Views/WalletRecovery/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/WalletRecovery/__snapshots__/index.test.tsx.snap @@ -42,7 +42,7 @@ exports[`WalletRecovery render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -101,7 +101,7 @@ exports[`WalletRecovery render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -115,7 +115,7 @@ exports[`WalletRecovery render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -133,7 +133,7 @@ exports[`WalletRecovery render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -173,7 +173,7 @@ exports[`WalletRecovery render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, diff --git a/app/components/Views/confirmations/components/UI/info-row/info-value/network/__snapshots__/network.test.tsx.snap b/app/components/Views/confirmations/components/UI/info-row/info-value/network/__snapshots__/network.test.tsx.snap index 97e13c3487a0..7c3231f6d474 100644 --- a/app/components/Views/confirmations/components/UI/info-row/info-value/network/__snapshots__/network.test.tsx.snap +++ b/app/components/Views/confirmations/components/UI/info-row/info-value/network/__snapshots__/network.test.tsx.snap @@ -41,7 +41,7 @@ exports[`Network should match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/confirmations/components/deposit-keyboard/deposit-keyboard.styles.ts b/app/components/Views/confirmations/components/deposit-keyboard/deposit-keyboard.styles.ts index cb8f49a06c0f..997172b9f27d 100644 --- a/app/components/Views/confirmations/components/deposit-keyboard/deposit-keyboard.styles.ts +++ b/app/components/Views/confirmations/components/deposit-keyboard/deposit-keyboard.styles.ts @@ -9,11 +9,9 @@ const styleSheet = (_params: { theme: Theme }) => flexGrow: 1, marginBottom: 12, }, - disabledButton: { opacity: 0.5, }, - skeletonButton: { width: '100%', height: 48, diff --git a/app/components/Views/confirmations/components/info/personal-sign/message.tsx b/app/components/Views/confirmations/components/info/personal-sign/message.tsx index a61d6223cced..6b6e0617b8d4 100644 --- a/app/components/Views/confirmations/components/info/personal-sign/message.tsx +++ b/app/components/Views/confirmations/components/info/personal-sign/message.tsx @@ -24,12 +24,12 @@ const styleSheet = (params: { theme: Theme }) => { messageExpanded: { color: theme.colors.text.default, ...fontStyles.normal, - fontWeight: '400', + ...fontStyles.normal, }, siweTos: { color: theme.colors.text.default, ...fontStyles.normal, - fontWeight: '400', + ...fontStyles.normal, paddingHorizontal: 8, marginBottom: 8, }, diff --git a/app/components/Views/confirmations/components/modals/alert-modal/alert-modal.styles.ts b/app/components/Views/confirmations/components/modals/alert-modal/alert-modal.styles.ts index f695ace705f0..9016490e0ae9 100644 --- a/app/components/Views/confirmations/components/modals/alert-modal/alert-modal.styles.ts +++ b/app/components/Views/confirmations/components/modals/alert-modal/alert-modal.styles.ts @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../../styles/common'; import { Theme } from '../../../../../../util/theme/models'; import Device from '../../../../../../util/device'; @@ -34,7 +35,7 @@ const styleSheet = (params: { theme: Theme }) => { paddingVertical: 16, }, headerText: { - fontWeight: 'bold', + ...fontStyles.bold, textAlign: 'center', marginBottom: 16, }, diff --git a/app/components/Views/confirmations/components/modals/confirm-alert-modal/confirm-alert-modal.styles.ts b/app/components/Views/confirmations/components/modals/confirm-alert-modal/confirm-alert-modal.styles.ts index f7cbf0495ebf..95d429ad6216 100644 --- a/app/components/Views/confirmations/components/modals/confirm-alert-modal/confirm-alert-modal.styles.ts +++ b/app/components/Views/confirmations/components/modals/confirm-alert-modal/confirm-alert-modal.styles.ts @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../../styles/common'; import { Theme } from '../../../../../../util/theme/models'; import Device from '../../../../../../util/device'; @@ -31,7 +32,7 @@ const styleSheet = (params: { theme: Theme }) => { width: 8, }, headerText: { - fontWeight: 'bold', + ...fontStyles.bold, textAlign: 'center', marginBottom: 16, }, diff --git a/app/components/Views/confirmations/components/send/amount/amount.styles.ts b/app/components/Views/confirmations/components/send/amount/amount.styles.ts index 85bf4053f242..88017d27c2c6 100644 --- a/app/components/Views/confirmations/components/send/amount/amount.styles.ts +++ b/app/components/Views/confirmations/components/send/amount/amount.styles.ts @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../../styles/common'; import { Theme } from '../../../../../../util/theme/models'; import { @@ -64,7 +65,7 @@ export const styleSheet = (params: { inputText: { fontSize: getFontSizeForInputLength(contentLength), lineHeight: 75, - fontFamily: 'Geist Medium', + ...fontStyles.medium, }, inputWrapper: { alignItems: 'center', diff --git a/app/components/Views/confirmations/components/transactions/custom-amount/custom-amount.styles.ts b/app/components/Views/confirmations/components/transactions/custom-amount/custom-amount.styles.ts index 2978f8f6eb37..068362bc75e0 100644 --- a/app/components/Views/confirmations/components/transactions/custom-amount/custom-amount.styles.ts +++ b/app/components/Views/confirmations/components/transactions/custom-amount/custom-amount.styles.ts @@ -1,4 +1,5 @@ import { StyleSheet } from 'react-native'; +import { fontStyles } from '../../../../../../styles/common'; import { Theme } from '../../../../../../util/theme/models'; function getFontSize(length: number) { @@ -25,7 +26,7 @@ const styleSheet = (params: { textAlign: 'center', fontSize: getFontSize(params.vars.amountLength), lineHeight: getFontSize(params.vars.amountLength) * 1.1, - fontWeight: '500', + ...fontStyles.medium, color: params.vars.hasAlert ? params.theme.colors.error.default : params.vars.disabled diff --git a/app/components/Views/confirmations/legacy/Approval/__snapshots__/index.test.tsx.snap b/app/components/Views/confirmations/legacy/Approval/__snapshots__/index.test.tsx.snap index 56f56904c542..62a39df5b797 100644 --- a/app/components/Views/confirmations/legacy/Approval/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/confirmations/legacy/Approval/__snapshots__/index.test.tsx.snap @@ -632,7 +632,7 @@ exports[`Approval render matches snapshot 1`] = ` "borderRadius": 12, "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, "paddingHorizontal": 8, "paddingVertical": 4, @@ -646,7 +646,7 @@ exports[`Approval render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 44, "paddingBottom": 4, "paddingTop": 16, @@ -720,14 +720,14 @@ exports[`Approval render matches snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -1113,7 +1113,7 @@ exports[`Approval render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "lineHeight": 16, "textAlign": "center", @@ -1142,7 +1142,7 @@ exports[`Approval render matches snapshot 1`] = ` { "alignSelf": "center", "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 12, "textAlign": "center", } @@ -1202,7 +1202,7 @@ exports[`Approval render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1243,7 +1243,7 @@ exports[`Approval render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1330,7 +1330,7 @@ exports[`Approval render matches snapshot 1`] = ` { "alignSelf": "center", "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, } } @@ -1363,7 +1363,7 @@ exports[`Approval render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "marginBottom": 28, "textAlign": "center", @@ -1388,11 +1388,11 @@ exports[`Approval render matches snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, }, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, ] } @@ -1457,7 +1457,7 @@ exports[`Approval render matches snapshot 1`] = ` { "backgroundColor": "#ffffff", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "paddingTop": 0, } diff --git a/app/components/Views/confirmations/legacy/Approve/__snapshots__/index.test.tsx.snap b/app/components/Views/confirmations/legacy/Approve/__snapshots__/index.test.tsx.snap index 948d19cd853d..fbb0f5e80dc6 100644 --- a/app/components/Views/confirmations/legacy/Approve/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/confirmations/legacy/Approve/__snapshots__/index.test.tsx.snap @@ -606,7 +606,7 @@ exports[`Approve renders transaction approval 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 34, @@ -632,7 +632,7 @@ exports[`Approve renders transaction approval 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -653,7 +653,7 @@ exports[`Approve renders transaction approval 1`] = ` { "backgroundColor": "transparent", "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 22, @@ -668,7 +668,7 @@ exports[`Approve renders transaction approval 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -718,7 +718,7 @@ exports[`Approve renders transaction approval 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 16, @@ -805,7 +805,7 @@ exports[`Approve renders transaction approval 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -846,7 +846,7 @@ exports[`Approve renders transaction approval 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/confirmations/legacy/ApproveView/Approve/__snapshots__/index.test.tsx.snap b/app/components/Views/confirmations/legacy/ApproveView/Approve/__snapshots__/index.test.tsx.snap index 948d19cd853d..fbb0f5e80dc6 100644 --- a/app/components/Views/confirmations/legacy/ApproveView/Approve/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/confirmations/legacy/ApproveView/Approve/__snapshots__/index.test.tsx.snap @@ -606,7 +606,7 @@ exports[`Approve renders transaction approval 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 34, @@ -632,7 +632,7 @@ exports[`Approve renders transaction approval 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -653,7 +653,7 @@ exports[`Approve renders transaction approval 1`] = ` { "backgroundColor": "transparent", "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 22, @@ -668,7 +668,7 @@ exports[`Approve renders transaction approval 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -718,7 +718,7 @@ exports[`Approve renders transaction approval 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 16, @@ -805,7 +805,7 @@ exports[`Approve renders transaction approval 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -846,7 +846,7 @@ exports[`Approve renders transaction approval 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/confirmations/legacy/SendFlow/AddressElement/__snapshots__/AddressElement.test.tsx.snap b/app/components/Views/confirmations/legacy/SendFlow/AddressElement/__snapshots__/AddressElement.test.tsx.snap index d313ce3f3caa..b4df1759cf26 100644 --- a/app/components/Views/confirmations/legacy/SendFlow/AddressElement/__snapshots__/AddressElement.test.tsx.snap +++ b/app/components/Views/confirmations/legacy/SendFlow/AddressElement/__snapshots__/AddressElement.test.tsx.snap @@ -101,7 +101,7 @@ exports[`AddressElement should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/confirmations/legacy/SendFlow/AddressFrom/__snapshots__/AddressFrom.test.tsx.snap b/app/components/Views/confirmations/legacy/SendFlow/AddressFrom/__snapshots__/AddressFrom.test.tsx.snap index 4eaf2485b2a4..d671f395f029 100644 --- a/app/components/Views/confirmations/legacy/SendFlow/AddressFrom/__snapshots__/AddressFrom.test.tsx.snap +++ b/app/components/Views/confirmations/legacy/SendFlow/AddressFrom/__snapshots__/AddressFrom.test.tsx.snap @@ -24,7 +24,7 @@ exports[`SendFlowAddressFrom should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -148,7 +148,7 @@ exports[`SendFlowAddressFrom should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -163,7 +163,7 @@ exports[`SendFlowAddressFrom should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/confirmations/legacy/SendFlow/AddressList/__snapshots__/AddressList.test.tsx.snap b/app/components/Views/confirmations/legacy/SendFlow/AddressList/__snapshots__/AddressList.test.tsx.snap index 2203b8d2c259..8b9accec8df0 100644 --- a/app/components/Views/confirmations/legacy/SendFlow/AddressList/__snapshots__/AddressList.test.tsx.snap +++ b/app/components/Views/confirmations/legacy/SendFlow/AddressList/__snapshots__/AddressList.test.tsx.snap @@ -57,7 +57,7 @@ exports[`AddressList renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -238,7 +238,7 @@ exports[`AddressList renders correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -254,7 +254,7 @@ exports[`AddressList renders correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/confirmations/legacy/SendFlow/AddressTo/__snapshots__/AddressTo.test.tsx.snap b/app/components/Views/confirmations/legacy/SendFlow/AddressTo/__snapshots__/AddressTo.test.tsx.snap index 72b8bc3aa2ef..f47e26312079 100644 --- a/app/components/Views/confirmations/legacy/SendFlow/AddressTo/__snapshots__/AddressTo.test.tsx.snap +++ b/app/components/Views/confirmations/legacy/SendFlow/AddressTo/__snapshots__/AddressTo.test.tsx.snap @@ -24,7 +24,7 @@ exports[`SendFlowAddressTo should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -79,7 +79,7 @@ exports[`SendFlowAddressTo should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "paddingLeft": 0, "paddingRight": 6, }, diff --git a/app/components/Views/confirmations/legacy/SendFlow/Amount/__snapshots__/index.test.tsx.snap b/app/components/Views/confirmations/legacy/SendFlow/Amount/__snapshots__/index.test.tsx.snap index 8a1ad45a3ea7..c1d17f6a48e1 100644 --- a/app/components/Views/confirmations/legacy/SendFlow/Amount/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/confirmations/legacy/SendFlow/Amount/__snapshots__/index.test.tsx.snap @@ -376,7 +376,7 @@ exports[`Amount converts ERC-20 token value to USD 1`] = ` "backgroundColor": "#4459ff", "borderRadius": 100, "flexDirection": "row", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "paddingHorizontal": 16, "paddingVertical": 2, } @@ -386,7 +386,7 @@ exports[`Amount converts ERC-20 token value to USD 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "paddingVertical": 2, } @@ -446,7 +446,7 @@ exports[`Amount converts ERC-20 token value to USD 1`] = ` { "alignSelf": "flex-end", "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "textTransform": "uppercase", } @@ -482,7 +482,7 @@ exports[`Amount converts ERC-20 token value to USD 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 44, "textAlign": "center", } @@ -527,7 +527,7 @@ exports[`Amount converts ERC-20 token value to USD 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "textTransform": "uppercase", } @@ -584,7 +584,7 @@ exports[`Amount converts ERC-20 token value to USD 1`] = ` { "alignSelf": "center", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "lineHeight": 16, } @@ -663,7 +663,7 @@ exports[`Amount converts ERC-20 token value to USD 1`] = ` }, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -1073,7 +1073,7 @@ exports[`Amount converts ETH to USD 1`] = ` "backgroundColor": "#4459ff", "borderRadius": 100, "flexDirection": "row", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "paddingHorizontal": 16, "paddingVertical": 2, } @@ -1083,7 +1083,7 @@ exports[`Amount converts ETH to USD 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "paddingVertical": 2, } @@ -1143,7 +1143,7 @@ exports[`Amount converts ETH to USD 1`] = ` { "alignSelf": "flex-end", "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "textTransform": "uppercase", } @@ -1179,7 +1179,7 @@ exports[`Amount converts ETH to USD 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 44, "textAlign": "center", } @@ -1224,7 +1224,7 @@ exports[`Amount converts ETH to USD 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "textTransform": "uppercase", } @@ -1281,7 +1281,7 @@ exports[`Amount converts ETH to USD 1`] = ` { "alignSelf": "center", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "lineHeight": 16, } @@ -1360,7 +1360,7 @@ exports[`Amount converts ETH to USD 1`] = ` }, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -1770,7 +1770,7 @@ exports[`Amount converts USD to ERC-20 token value 1`] = ` "backgroundColor": "#4459ff", "borderRadius": 100, "flexDirection": "row", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "paddingHorizontal": 16, "paddingVertical": 2, } @@ -1780,7 +1780,7 @@ exports[`Amount converts USD to ERC-20 token value 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "paddingVertical": 2, } @@ -1840,7 +1840,7 @@ exports[`Amount converts USD to ERC-20 token value 1`] = ` { "alignSelf": "flex-end", "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "textTransform": "uppercase", } @@ -1872,7 +1872,7 @@ exports[`Amount converts USD to ERC-20 token value 1`] = ` { "alignItems": "center", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 44, "justifyContent": "center", "marginRight": 8, @@ -1892,7 +1892,7 @@ exports[`Amount converts USD to ERC-20 token value 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 44, "textAlign": "center", } @@ -1937,7 +1937,7 @@ exports[`Amount converts USD to ERC-20 token value 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "textTransform": "uppercase", } @@ -1994,7 +1994,7 @@ exports[`Amount converts USD to ERC-20 token value 1`] = ` { "alignSelf": "center", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "lineHeight": 16, } @@ -2073,7 +2073,7 @@ exports[`Amount converts USD to ERC-20 token value 1`] = ` }, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -2483,7 +2483,7 @@ exports[`Amount converts USD to ETH 1`] = ` "backgroundColor": "#4459ff", "borderRadius": 100, "flexDirection": "row", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "paddingHorizontal": 16, "paddingVertical": 2, } @@ -2493,7 +2493,7 @@ exports[`Amount converts USD to ETH 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "paddingVertical": 2, } @@ -2553,7 +2553,7 @@ exports[`Amount converts USD to ETH 1`] = ` { "alignSelf": "flex-end", "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "textTransform": "uppercase", } @@ -2585,7 +2585,7 @@ exports[`Amount converts USD to ETH 1`] = ` { "alignItems": "center", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 44, "justifyContent": "center", "marginRight": 8, @@ -2605,7 +2605,7 @@ exports[`Amount converts USD to ETH 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 44, "textAlign": "center", } @@ -2650,7 +2650,7 @@ exports[`Amount converts USD to ETH 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "textTransform": "uppercase", } @@ -2707,7 +2707,7 @@ exports[`Amount converts USD to ETH 1`] = ` { "alignSelf": "center", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "lineHeight": 16, } @@ -2786,7 +2786,7 @@ exports[`Amount converts USD to ETH 1`] = ` }, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -3196,7 +3196,7 @@ exports[`Amount displays correct balance 1`] = ` "backgroundColor": "#4459ff", "borderRadius": 100, "flexDirection": "row", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "paddingHorizontal": 16, "paddingVertical": 2, } @@ -3206,7 +3206,7 @@ exports[`Amount displays correct balance 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "paddingVertical": 2, } @@ -3266,7 +3266,7 @@ exports[`Amount displays correct balance 1`] = ` { "alignSelf": "flex-end", "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "textTransform": "uppercase", } @@ -3302,7 +3302,7 @@ exports[`Amount displays correct balance 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 44, "textAlign": "center", } @@ -3346,7 +3346,7 @@ exports[`Amount displays correct balance 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "textTransform": "uppercase", } @@ -3403,7 +3403,7 @@ exports[`Amount displays correct balance 1`] = ` { "alignSelf": "center", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "lineHeight": 16, } @@ -3482,7 +3482,7 @@ exports[`Amount displays correct balance 1`] = ` }, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -3892,7 +3892,7 @@ exports[`Amount does not show a warning when conversion rate is available 1`] = "backgroundColor": "#4459ff", "borderRadius": 100, "flexDirection": "row", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "paddingHorizontal": 16, "paddingVertical": 2, } @@ -3902,7 +3902,7 @@ exports[`Amount does not show a warning when conversion rate is available 1`] = style={ { "color": "#ffffff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "paddingVertical": 2, } @@ -3962,7 +3962,7 @@ exports[`Amount does not show a warning when conversion rate is available 1`] = { "alignSelf": "flex-end", "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "textTransform": "uppercase", } @@ -3998,7 +3998,7 @@ exports[`Amount does not show a warning when conversion rate is available 1`] = style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 44, "textAlign": "center", } @@ -4042,7 +4042,7 @@ exports[`Amount does not show a warning when conversion rate is available 1`] = style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "textTransform": "uppercase", } @@ -4099,7 +4099,7 @@ exports[`Amount does not show a warning when conversion rate is available 1`] = { "alignSelf": "center", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "lineHeight": 16, } @@ -4178,7 +4178,7 @@ exports[`Amount does not show a warning when conversion rate is available 1`] = }, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -4588,7 +4588,7 @@ exports[`Amount does not show a warning when transfering collectibles 1`] = ` "backgroundColor": "#4459ff", "borderRadius": 100, "flexDirection": "row", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "paddingHorizontal": 16, "paddingVertical": 2, } @@ -4598,7 +4598,7 @@ exports[`Amount does not show a warning when transfering collectibles 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "paddingVertical": 2, } @@ -4710,7 +4710,7 @@ exports[`Amount does not show a warning when transfering collectibles 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -4816,7 +4816,7 @@ exports[`Amount does not show a warning when transfering collectibles 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 32, "textAlign": "center", } @@ -4826,7 +4826,7 @@ exports[`Amount does not show a warning when transfering collectibles 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "marginTop": 8, "textAlign": "center", @@ -4906,7 +4906,7 @@ exports[`Amount does not show a warning when transfering collectibles 1`] = ` }, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -5316,7 +5316,7 @@ exports[`Amount proceeds if balance is sufficient while on Native primary curren "backgroundColor": "#4459ff", "borderRadius": 100, "flexDirection": "row", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "paddingHorizontal": 16, "paddingVertical": 2, } @@ -5326,7 +5326,7 @@ exports[`Amount proceeds if balance is sufficient while on Native primary curren style={ { "color": "#ffffff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "paddingVertical": 2, } @@ -5386,7 +5386,7 @@ exports[`Amount proceeds if balance is sufficient while on Native primary curren { "alignSelf": "flex-end", "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "textTransform": "uppercase", } @@ -5422,7 +5422,7 @@ exports[`Amount proceeds if balance is sufficient while on Native primary curren style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 44, "textAlign": "center", } @@ -5467,7 +5467,7 @@ exports[`Amount proceeds if balance is sufficient while on Native primary curren style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "textTransform": "uppercase", } @@ -5524,7 +5524,7 @@ exports[`Amount proceeds if balance is sufficient while on Native primary curren { "alignSelf": "center", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "lineHeight": 16, } @@ -5600,7 +5600,7 @@ exports[`Amount proceeds if balance is sufficient while on Native primary curren null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -6008,7 +6008,7 @@ exports[`Amount proceeds if balance is sufficient while on Native primary curren "backgroundColor": "#4459ff", "borderRadius": 100, "flexDirection": "row", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "paddingHorizontal": 16, "paddingVertical": 2, } @@ -6018,7 +6018,7 @@ exports[`Amount proceeds if balance is sufficient while on Native primary curren style={ { "color": "#ffffff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "paddingVertical": 2, } @@ -6078,7 +6078,7 @@ exports[`Amount proceeds if balance is sufficient while on Native primary curren { "alignSelf": "flex-end", "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "textTransform": "uppercase", } @@ -6114,7 +6114,7 @@ exports[`Amount proceeds if balance is sufficient while on Native primary curren style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 44, "textAlign": "center", } @@ -6159,7 +6159,7 @@ exports[`Amount proceeds if balance is sufficient while on Native primary curren style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "textTransform": "uppercase", } @@ -6216,7 +6216,7 @@ exports[`Amount proceeds if balance is sufficient while on Native primary curren { "alignSelf": "center", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "lineHeight": 16, } @@ -6292,7 +6292,7 @@ exports[`Amount proceeds if balance is sufficient while on Native primary curren null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -6776,7 +6776,7 @@ exports[`Amount renders correctly 1`] = ` "backgroundColor": "#4459ff", "borderRadius": 100, "flexDirection": "row", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "paddingHorizontal": 16, "paddingVertical": 2, } @@ -6786,7 +6786,7 @@ exports[`Amount renders correctly 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "paddingVertical": 2, } @@ -6846,7 +6846,7 @@ exports[`Amount renders correctly 1`] = ` { "alignSelf": "flex-end", "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "textTransform": "uppercase", } @@ -6882,7 +6882,7 @@ exports[`Amount renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 44, "textAlign": "center", } @@ -6903,7 +6903,7 @@ exports[`Amount renders correctly 1`] = ` { "alignSelf": "center", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "lineHeight": 16, } @@ -6982,7 +6982,7 @@ exports[`Amount renders correctly 1`] = ` }, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -7468,7 +7468,7 @@ exports[`Amount shows a warning when conversion rate is not available 1`] = ` "backgroundColor": "#4459ff", "borderRadius": 100, "flexDirection": "row", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "paddingHorizontal": 16, "paddingVertical": 2, } @@ -7478,7 +7478,7 @@ exports[`Amount shows a warning when conversion rate is not available 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "paddingVertical": 2, } @@ -7538,7 +7538,7 @@ exports[`Amount shows a warning when conversion rate is not available 1`] = ` { "alignSelf": "flex-end", "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "textTransform": "uppercase", } @@ -7574,7 +7574,7 @@ exports[`Amount shows a warning when conversion rate is not available 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 44, "textAlign": "center", } @@ -7595,7 +7595,7 @@ exports[`Amount shows a warning when conversion rate is not available 1`] = ` { "alignSelf": "center", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "lineHeight": 16, } @@ -7674,7 +7674,7 @@ exports[`Amount shows a warning when conversion rate is not available 1`] = ` }, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, @@ -8084,7 +8084,7 @@ exports[`Amount shows an error message if balance is insufficient 1`] = ` "backgroundColor": "#4459ff", "borderRadius": 100, "flexDirection": "row", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "paddingHorizontal": 16, "paddingVertical": 2, } @@ -8094,7 +8094,7 @@ exports[`Amount shows an error message if balance is insufficient 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "paddingVertical": 2, } @@ -8154,7 +8154,7 @@ exports[`Amount shows an error message if balance is insufficient 1`] = ` { "alignSelf": "flex-end", "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "textTransform": "uppercase", } @@ -8190,7 +8190,7 @@ exports[`Amount shows an error message if balance is insufficient 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 44, "textAlign": "center", } @@ -8235,7 +8235,7 @@ exports[`Amount shows an error message if balance is insufficient 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "textTransform": "uppercase", } @@ -8292,7 +8292,7 @@ exports[`Amount shows an error message if balance is insufficient 1`] = ` { "alignSelf": "center", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "lineHeight": 16, } @@ -8330,7 +8330,7 @@ exports[`Amount shows an error message if balance is insufficient 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "lineHeight": 16, "textAlign": "center", @@ -8408,7 +8408,7 @@ exports[`Amount shows an error message if balance is insufficient 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, diff --git a/app/components/Views/confirmations/legacy/SendFlow/Confirm/__snapshots__/index.test.tsx.snap b/app/components/Views/confirmations/legacy/SendFlow/Confirm/__snapshots__/index.test.tsx.snap index 510ab39e535f..690ad8f0ff3f 100644 --- a/app/components/Views/confirmations/legacy/SendFlow/Confirm/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/confirmations/legacy/SendFlow/Confirm/__snapshots__/index.test.tsx.snap @@ -129,7 +129,7 @@ exports[`Confirm should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -165,7 +165,7 @@ exports[`Confirm should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -205,7 +205,7 @@ exports[`Confirm should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, } } @@ -439,7 +439,7 @@ exports[`Confirm should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -601,7 +601,7 @@ exports[`Confirm should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -624,7 +624,7 @@ exports[`Confirm should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -642,7 +642,7 @@ exports[`Confirm should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -657,7 +657,7 @@ exports[`Confirm should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -698,7 +698,7 @@ exports[`Confirm should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -833,7 +833,7 @@ exports[`Confirm should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -901,7 +901,7 @@ exports[`Confirm should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -930,7 +930,7 @@ exports[`Confirm should render correctly 1`] = ` undefined, { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "marginVertical": 3, "textAlign": "center", @@ -946,7 +946,7 @@ exports[`Confirm should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -975,7 +975,7 @@ exports[`Confirm should render correctly 1`] = ` undefined, { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 44, "textAlign": "center", }, @@ -988,7 +988,7 @@ exports[`Confirm should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -1017,7 +1017,7 @@ exports[`Confirm should render correctly 1`] = ` undefined, { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "marginVertical": 3, "textAlign": "center", @@ -1083,14 +1083,14 @@ exports[`Confirm should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -1343,14 +1343,14 @@ exports[`Confirm should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -1650,7 +1650,7 @@ exports[`Confirm should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -1680,7 +1680,7 @@ exports[`Confirm should render correctly 1`] = ` { "alignSelf": "center", "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, }, ] @@ -1748,7 +1748,7 @@ exports[`Confirm should render correctly 1`] = ` }, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, diff --git a/app/components/Views/confirmations/legacy/SendFlow/Confirm/components/CustomGasModal/__snapshots__/CustomGasModal.test.tsx.snap b/app/components/Views/confirmations/legacy/SendFlow/Confirm/components/CustomGasModal/__snapshots__/CustomGasModal.test.tsx.snap index 210476a31559..65562d0bc587 100644 --- a/app/components/Views/confirmations/legacy/SendFlow/Confirm/components/CustomGasModal/__snapshots__/CustomGasModal.test.tsx.snap +++ b/app/components/Views/confirmations/legacy/SendFlow/Confirm/components/CustomGasModal/__snapshots__/CustomGasModal.test.tsx.snap @@ -210,7 +210,7 @@ exports[`CustomGasModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -271,7 +271,7 @@ exports[`CustomGasModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -293,7 +293,7 @@ exports[`CustomGasModal should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -333,7 +333,7 @@ exports[`CustomGasModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -493,7 +493,7 @@ exports[`CustomGasModal should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -619,7 +619,7 @@ exports[`CustomGasModal should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -695,7 +695,7 @@ exports[`CustomGasModal should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -710,7 +710,7 @@ exports[`CustomGasModal should render correctly 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -868,7 +868,7 @@ exports[`CustomGasModal should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -995,7 +995,7 @@ exports[`CustomGasModal should render correctly 1`] = ` null, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, diff --git a/app/components/Views/confirmations/legacy/SendFlow/ErrorMessage/__snapshots__/index.test.tsx.snap b/app/components/Views/confirmations/legacy/SendFlow/ErrorMessage/__snapshots__/index.test.tsx.snap index dbc4e647a42a..19bb4b0b1c5a 100644 --- a/app/components/Views/confirmations/legacy/SendFlow/ErrorMessage/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/confirmations/legacy/SendFlow/ErrorMessage/__snapshots__/index.test.tsx.snap @@ -26,7 +26,7 @@ exports[`ErrorMessage should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, diff --git a/app/components/Views/confirmations/legacy/SendFlow/SendTo/__snapshots__/index.test.tsx.snap b/app/components/Views/confirmations/legacy/SendFlow/SendTo/__snapshots__/index.test.tsx.snap index f949369148a3..f54cee0aab15 100644 --- a/app/components/Views/confirmations/legacy/SendFlow/SendTo/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/confirmations/legacy/SendFlow/SendTo/__snapshots__/index.test.tsx.snap @@ -101,7 +101,7 @@ exports[`SendTo Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -161,7 +161,7 @@ exports[`SendTo Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -227,7 +227,7 @@ exports[`SendTo Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -240,7 +240,7 @@ exports[`SendTo Component render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 24, @@ -322,7 +322,7 @@ exports[`SendTo Component render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -378,7 +378,7 @@ exports[`SendTo Component render matches snapshot 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "paddingLeft": 0, "paddingRight": 6, }, @@ -488,7 +488,7 @@ exports[`SendTo Component render matches snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -610,7 +610,7 @@ exports[`SendTo Component render matches snapshot 1`] = ` }, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, diff --git a/app/components/Views/confirmations/legacy/SendFlow/components/CustomNonceModal/__snapshots__/index.test.tsx.snap b/app/components/Views/confirmations/legacy/SendFlow/components/CustomNonceModal/__snapshots__/index.test.tsx.snap index 2b6c829b3148..3d1a190bda0b 100644 --- a/app/components/Views/confirmations/legacy/SendFlow/components/CustomNonceModal/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/confirmations/legacy/SendFlow/components/CustomNonceModal/__snapshots__/index.test.tsx.snap @@ -120,7 +120,7 @@ exports[`CustomNonceModal renders correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 36, "marginHorizontal": 24, "maxWidth": 200, diff --git a/app/components/Views/confirmations/legacy/components/Approval/ApprovalFlowLoader/__snapshots__/index.test.tsx.snap b/app/components/Views/confirmations/legacy/components/Approval/ApprovalFlowLoader/__snapshots__/index.test.tsx.snap index 3ebe733012e5..5493ef2dc53b 100644 --- a/app/components/Views/confirmations/legacy/components/Approval/ApprovalFlowLoader/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/confirmations/legacy/components/Approval/ApprovalFlowLoader/__snapshots__/index.test.tsx.snap @@ -77,7 +77,7 @@ exports[`ApprovalFlowLoader should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, diff --git a/app/components/Views/confirmations/legacy/components/Approval/TemplateConfirmation/Templates/__snapshots__/ApprovalResult.test.tsx.snap b/app/components/Views/confirmations/legacy/components/Approval/TemplateConfirmation/Templates/__snapshots__/ApprovalResult.test.tsx.snap index c0cadb88f720..b4d7f1cd03eb 100644 --- a/app/components/Views/confirmations/legacy/components/Approval/TemplateConfirmation/Templates/__snapshots__/ApprovalResult.test.tsx.snap +++ b/app/components/Views/confirmations/legacy/components/Approval/TemplateConfirmation/Templates/__snapshots__/ApprovalResult.test.tsx.snap @@ -26,7 +26,7 @@ exports[`ApprovalResult renders approval result with error type 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -94,7 +94,7 @@ exports[`ApprovalResult renders approval result with error type 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -117,7 +117,7 @@ exports[`ApprovalResult renders approval result with error type 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -131,7 +131,7 @@ exports[`ApprovalResult renders approval result with error type 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -191,7 +191,7 @@ exports[`ApprovalResult renders approval result with error type 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -232,7 +232,7 @@ exports[`ApprovalResult renders approval result with success type 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -300,7 +300,7 @@ exports[`ApprovalResult renders approval result with success type 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -323,7 +323,7 @@ exports[`ApprovalResult renders approval result with success type 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -337,7 +337,7 @@ exports[`ApprovalResult renders approval result with success type 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -397,7 +397,7 @@ exports[`ApprovalResult renders approval result with success type 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/confirmations/legacy/components/Approval/TemplateConfirmation/__snapshots__/TemplateConfirmation.test.tsx.snap b/app/components/Views/confirmations/legacy/components/Approval/TemplateConfirmation/__snapshots__/TemplateConfirmation.test.tsx.snap index bc0f8cccd9fd..20c5ace15320 100644 --- a/app/components/Views/confirmations/legacy/components/Approval/TemplateConfirmation/__snapshots__/TemplateConfirmation.test.tsx.snap +++ b/app/components/Views/confirmations/legacy/components/Approval/TemplateConfirmation/__snapshots__/TemplateConfirmation.test.tsx.snap @@ -19,7 +19,7 @@ exports[`TemplateConfirmation renders content and actions 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -77,7 +77,7 @@ exports[`TemplateConfirmation renders content and actions 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -119,7 +119,7 @@ exports[`TemplateConfirmation renders content and actions 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -153,7 +153,7 @@ exports[`TemplateConfirmation renders content without actions 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/confirmations/legacy/components/Approval/TemplateConfirmation/util.ts b/app/components/Views/confirmations/legacy/components/Approval/TemplateConfirmation/util.ts index 98caad601a56..411ffaa80891 100644 --- a/app/components/Views/confirmations/legacy/components/Approval/TemplateConfirmation/util.ts +++ b/app/components/Views/confirmations/legacy/components/Approval/TemplateConfirmation/util.ts @@ -1,4 +1,5 @@ import { ResultComponent } from '@metamask/approval-controller'; +import { fontStyles } from '../../../../../../../styles/common'; import { TemplateRendererComponent, TemplateRendererInput, @@ -105,7 +106,7 @@ function applyBold(message: string): (string | TemplateRendererComponent)[] { element: 'Text', children: formattedText, props: { - style: { fontWeight: 'bold' }, + style: { ...fontStyles.bold }, }, })); } diff --git a/app/components/Views/confirmations/legacy/components/ApproveTransactionHeader/__snapshots__/ApproveTransactionHeader.test.tsx.snap b/app/components/Views/confirmations/legacy/components/ApproveTransactionHeader/__snapshots__/ApproveTransactionHeader.test.tsx.snap index 0e57fb31616e..ab980a4e13d3 100644 --- a/app/components/Views/confirmations/legacy/components/ApproveTransactionHeader/__snapshots__/ApproveTransactionHeader.test.tsx.snap +++ b/app/components/Views/confirmations/legacy/components/ApproveTransactionHeader/__snapshots__/ApproveTransactionHeader.test.tsx.snap @@ -63,7 +63,7 @@ exports[`ApproveTransactionHeader should render correctly 1`] = ` { "color": "#686e7d", "flexShrink": 1, - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -225,7 +225,7 @@ exports[`ApproveTransactionHeader should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -248,7 +248,7 @@ exports[`ApproveTransactionHeader should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -266,7 +266,7 @@ exports[`ApproveTransactionHeader should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -281,7 +281,7 @@ exports[`ApproveTransactionHeader should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -457,7 +457,7 @@ exports[`ApproveTransactionHeader should return origin to be null when not prese style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -480,7 +480,7 @@ exports[`ApproveTransactionHeader should return origin to be null when not prese style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -498,7 +498,7 @@ exports[`ApproveTransactionHeader should return origin to be null when not prese style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -513,7 +513,7 @@ exports[`ApproveTransactionHeader should return origin to be null when not prese style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/confirmations/legacy/components/ApproveTransactionReview/__snapshots__/index.test.jsx.snap b/app/components/Views/confirmations/legacy/components/ApproveTransactionReview/__snapshots__/index.test.jsx.snap index 089000f53755..a6b59ce46511 100644 --- a/app/components/Views/confirmations/legacy/components/ApproveTransactionReview/__snapshots__/index.test.jsx.snap +++ b/app/components/Views/confirmations/legacy/components/ApproveTransactionReview/__snapshots__/index.test.jsx.snap @@ -423,7 +423,7 @@ exports[`ApproveTransactionModal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 34, @@ -449,7 +449,7 @@ exports[`ApproveTransactionModal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -469,7 +469,7 @@ exports[`ApproveTransactionModal render matches snapshot 1`] = ` { "backgroundColor": "transparent", "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 22, @@ -484,7 +484,7 @@ exports[`ApproveTransactionModal render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -534,7 +534,7 @@ exports[`ApproveTransactionModal render matches snapshot 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 16, @@ -621,7 +621,7 @@ exports[`ApproveTransactionModal render matches snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -662,7 +662,7 @@ exports[`ApproveTransactionModal render matches snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/confirmations/legacy/components/BlockaidBanner/__snapshots__/BlockaidBanner.test.tsx.snap b/app/components/Views/confirmations/legacy/components/BlockaidBanner/__snapshots__/BlockaidBanner.test.tsx.snap index 7b300513bf82..9c621843bc31 100644 --- a/app/components/Views/confirmations/legacy/components/BlockaidBanner/__snapshots__/BlockaidBanner.test.tsx.snap +++ b/app/components/Views/confirmations/legacy/components/BlockaidBanner/__snapshots__/BlockaidBanner.test.tsx.snap @@ -72,7 +72,7 @@ exports[`BlockaidBanner should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -86,7 +86,7 @@ exports[`BlockaidBanner should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -113,7 +113,7 @@ exports[`BlockaidBanner should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -224,7 +224,7 @@ exports[`BlockaidBanner should render correctly with list attack details 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -238,7 +238,7 @@ exports[`BlockaidBanner should render correctly with list attack details 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -265,7 +265,7 @@ exports[`BlockaidBanner should render correctly with list attack details 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -376,7 +376,7 @@ exports[`BlockaidBanner should render correctly with reason "raw_signature_farmi style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -390,7 +390,7 @@ exports[`BlockaidBanner should render correctly with reason "raw_signature_farmi style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -417,7 +417,7 @@ exports[`BlockaidBanner should render correctly with reason "raw_signature_farmi style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -537,7 +537,7 @@ exports[`BlockaidBanner should render normal banner alert if resultType is faile style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -551,7 +551,7 @@ exports[`BlockaidBanner should render normal banner alert if resultType is faile style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -629,7 +629,7 @@ exports[`BlockaidBanner should render something does not look right with contact style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -643,7 +643,7 @@ exports[`BlockaidBanner should render something does not look right with contact style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -670,7 +670,7 @@ exports[`BlockaidBanner should render something does not look right with contact style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/confirmations/legacy/components/CustomNonce/__snapshots__/index.test.tsx.snap b/app/components/Views/confirmations/legacy/components/CustomNonce/__snapshots__/index.test.tsx.snap index de7693c81e4b..92352af0ac59 100644 --- a/app/components/Views/confirmations/legacy/components/CustomNonce/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/confirmations/legacy/components/CustomNonce/__snapshots__/index.test.tsx.snap @@ -21,14 +21,14 @@ exports[`CustomNonce should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, { @@ -65,14 +65,14 @@ exports[`CustomNonce should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -108,14 +108,14 @@ exports[`CustomNonce should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, { diff --git a/app/components/Views/confirmations/legacy/components/EditGasFeeLegacyUpdate/__snapshots__/EditGasFeeLegacyUpdate.test.tsx.snap b/app/components/Views/confirmations/legacy/components/EditGasFeeLegacyUpdate/__snapshots__/EditGasFeeLegacyUpdate.test.tsx.snap index 67b3187e956a..e36deb390af6 100644 --- a/app/components/Views/confirmations/legacy/components/EditGasFeeLegacyUpdate/__snapshots__/EditGasFeeLegacyUpdate.test.tsx.snap +++ b/app/components/Views/confirmations/legacy/components/EditGasFeeLegacyUpdate/__snapshots__/EditGasFeeLegacyUpdate.test.tsx.snap @@ -85,7 +85,7 @@ exports[`EditGasFeeLegacyUpdate should match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -173,7 +173,7 @@ exports[`EditGasFeeLegacyUpdate should match snapshot 1`] = ` style={ { "color": "#9a6300", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 20, @@ -214,7 +214,7 @@ exports[`EditGasFeeLegacyUpdate should match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 32, "letterSpacing": 0, "lineHeight": 40, @@ -236,7 +236,7 @@ exports[`EditGasFeeLegacyUpdate should match snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -276,7 +276,7 @@ exports[`EditGasFeeLegacyUpdate should match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -436,7 +436,7 @@ exports[`EditGasFeeLegacyUpdate should match snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -562,7 +562,7 @@ exports[`EditGasFeeLegacyUpdate should match snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -638,7 +638,7 @@ exports[`EditGasFeeLegacyUpdate should match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -653,7 +653,7 @@ exports[`EditGasFeeLegacyUpdate should match snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -812,7 +812,7 @@ exports[`EditGasFeeLegacyUpdate should match snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, @@ -942,7 +942,7 @@ exports[`EditGasFeeLegacyUpdate should match snapshot 1`] = ` }, [ { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, "textAlign": "center", }, diff --git a/app/components/Views/confirmations/legacy/components/SignatureRequest/ExpandedMessage/__snapshots__/index.test.tsx.snap b/app/components/Views/confirmations/legacy/components/SignatureRequest/ExpandedMessage/__snapshots__/index.test.tsx.snap index 1bbf064ab736..8ba1b56d2356 100644 --- a/app/components/Views/confirmations/legacy/components/SignatureRequest/ExpandedMessage/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/confirmations/legacy/components/SignatureRequest/ExpandedMessage/__snapshots__/index.test.tsx.snap @@ -40,7 +40,7 @@ exports[`ExpandedMessage should render correctly 1`] = ` { "color": "#121314", "flex": 1, - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "textAlign": "center", } @@ -80,7 +80,7 @@ exports[`ExpandedMessage should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "textAlign": "center", } diff --git a/app/components/Views/confirmations/legacy/components/TransactionBlockaidBanner/__snapshots__/TransactionBlockaidBanner.test.tsx.snap b/app/components/Views/confirmations/legacy/components/TransactionBlockaidBanner/__snapshots__/TransactionBlockaidBanner.test.tsx.snap index 781b065c8615..67c312fa3be8 100644 --- a/app/components/Views/confirmations/legacy/components/TransactionBlockaidBanner/__snapshots__/TransactionBlockaidBanner.test.tsx.snap +++ b/app/components/Views/confirmations/legacy/components/TransactionBlockaidBanner/__snapshots__/TransactionBlockaidBanner.test.tsx.snap @@ -61,7 +61,7 @@ exports[`TransactionBlockaidBanner should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 18, "letterSpacing": 0, "lineHeight": 24, @@ -75,7 +75,7 @@ exports[`TransactionBlockaidBanner should render correctly 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -102,7 +102,7 @@ exports[`TransactionBlockaidBanner should render correctly 1`] = ` style={ { "color": "#4459ff", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/confirmations/legacy/components/TransactionReview/TransactionReviewEIP1559/__snapshots__/index.test.tsx.snap b/app/components/Views/confirmations/legacy/components/TransactionReview/TransactionReviewEIP1559/__snapshots__/index.test.tsx.snap index 79de203ae78c..4ddcd668e56b 100644 --- a/app/components/Views/confirmations/legacy/components/TransactionReview/TransactionReviewEIP1559/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/confirmations/legacy/components/TransactionReview/TransactionReviewEIP1559/__snapshots__/index.test.tsx.snap @@ -57,14 +57,14 @@ exports[`TransactionReviewEIP1559 should match snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, diff --git a/app/components/Views/confirmations/legacy/components/TransactionReview/TransactionReviewEIP1559Update/__snapshots__/index.test.jsx.snap b/app/components/Views/confirmations/legacy/components/TransactionReview/TransactionReviewEIP1559Update/__snapshots__/index.test.jsx.snap index 296cc72ae241..e162cd9513ae 100644 --- a/app/components/Views/confirmations/legacy/components/TransactionReview/TransactionReviewEIP1559Update/__snapshots__/index.test.jsx.snap +++ b/app/components/Views/confirmations/legacy/components/TransactionReview/TransactionReviewEIP1559Update/__snapshots__/index.test.jsx.snap @@ -57,14 +57,14 @@ exports[`TransactionReviewEIP1559 should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -317,14 +317,14 @@ exports[`TransactionReviewEIP1559 should render correctly 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, diff --git a/app/components/Views/confirmations/legacy/components/TransactionReview/__snapshots__/index.test.jsx.snap b/app/components/Views/confirmations/legacy/components/TransactionReview/__snapshots__/index.test.jsx.snap index f7551a7be452..19d66ab313b3 100644 --- a/app/components/Views/confirmations/legacy/components/TransactionReview/__snapshots__/index.test.jsx.snap +++ b/app/components/Views/confirmations/legacy/components/TransactionReview/__snapshots__/index.test.jsx.snap @@ -108,7 +108,7 @@ exports[`TransactionReview should match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -270,7 +270,7 @@ exports[`TransactionReview should match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -293,7 +293,7 @@ exports[`TransactionReview should match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -309,7 +309,7 @@ exports[`TransactionReview should match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 22, @@ -324,7 +324,7 @@ exports[`TransactionReview should match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -365,7 +365,7 @@ exports[`TransactionReview should match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -497,7 +497,7 @@ exports[`TransactionReview should match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "letterSpacing": 0, "lineHeight": 24, @@ -520,7 +520,7 @@ exports[`TransactionReview should match snapshot 1`] = ` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 12, "letterSpacing": 0, "lineHeight": 24, @@ -588,7 +588,7 @@ exports[`TransactionReview should match snapshot 1`] = ` "borderRadius": 12, "borderWidth": 1, "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 10, "paddingHorizontal": 8, "paddingVertical": 4, @@ -602,7 +602,7 @@ exports[`TransactionReview should match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 44, "paddingBottom": 4, "paddingTop": 16, @@ -676,14 +676,14 @@ exports[`TransactionReview should match snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 30, "marginVertical": 2, }, undefined, undefined, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, undefined, undefined, @@ -1070,7 +1070,7 @@ exports[`TransactionReview should match snapshot 1`] = ` { "alignSelf": "center", "color": "#4459ff", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 12, "textAlign": "center", } @@ -1129,7 +1129,7 @@ exports[`TransactionReview should match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1168,7 +1168,7 @@ exports[`TransactionReview should match snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -1249,7 +1249,7 @@ exports[`TransactionReview should match snapshot 1`] = ` { "alignSelf": "center", "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 14, } } @@ -1282,7 +1282,7 @@ exports[`TransactionReview should match snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "marginBottom": 28, "textAlign": "center", @@ -1307,11 +1307,11 @@ exports[`TransactionReview should match snapshot 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, }, { - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", }, ] } @@ -1349,7 +1349,7 @@ exports[`TransactionReview should match snapshot 1`] = ` { "backgroundColor": "#ffffff", "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 14, "paddingTop": 0, } diff --git a/app/components/Views/confirmations/legacy/components/TypedSign/__snapshots__/index.test.tsx.snap b/app/components/Views/confirmations/legacy/components/TypedSign/__snapshots__/index.test.tsx.snap index 11026c61626f..bf9c9a9bd3ec 100644 --- a/app/components/Views/confirmations/legacy/components/TypedSign/__snapshots__/index.test.tsx.snap +++ b/app/components/Views/confirmations/legacy/components/TypedSign/__snapshots__/index.test.tsx.snap @@ -101,7 +101,7 @@ exports[`TypedSign onConfirm signs message 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 20, "textAlign": "center", } @@ -174,7 +174,7 @@ exports[`TypedSign onConfirm signs message 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 24, "textAlign": "center", "textTransform": "uppercase", @@ -199,7 +199,7 @@ exports[`TypedSign onConfirm signs message 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "marginBottom": 4, } @@ -269,7 +269,7 @@ exports[`TypedSign onConfirm signs message 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -309,7 +309,7 @@ exports[`TypedSign onConfirm signs message 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -427,7 +427,7 @@ exports[`TypedSign onReject rejects message 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 20, "textAlign": "center", } @@ -500,7 +500,7 @@ exports[`TypedSign onReject rejects message 1`] = ` [ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 24, "textAlign": "center", "textTransform": "uppercase", @@ -525,7 +525,7 @@ exports[`TypedSign onReject rejects message 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "marginBottom": 4, } @@ -595,7 +595,7 @@ exports[`TypedSign onReject rejects message 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -635,7 +635,7 @@ exports[`TypedSign onReject rejects message 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/components/Views/transactions/SmartTransactionStatus/SmartTransactionStatus.tsx b/app/components/Views/transactions/SmartTransactionStatus/SmartTransactionStatus.tsx index 2bdda6b1bae4..ec970143985f 100644 --- a/app/components/Views/transactions/SmartTransactionStatus/SmartTransactionStatus.tsx +++ b/app/components/Views/transactions/SmartTransactionStatus/SmartTransactionStatus.tsx @@ -1,6 +1,7 @@ import React, { useMemo } from 'react'; import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; import { Hex } from '@metamask/utils'; +import { fontStyles } from '../../../../styles/common'; import { strings } from '../../../../../locales/i18n'; import Icon, { IconColor, @@ -222,7 +223,7 @@ const createStyles = (colors: ThemeColors) => }, header: { textAlign: 'center', - fontWeight: 'bold', + ...fontStyles.bold, fontSize: 18, color: colors.text.default, }, diff --git a/app/constants/fonts.ts b/app/constants/fonts.ts new file mode 100644 index 000000000000..1915f7175f87 --- /dev/null +++ b/app/constants/fonts.ts @@ -0,0 +1,39 @@ +/** + * Font constants for MetaMask Mobile + * + * This file maps old Full Names (with spaces) to new PostScript Names (with hyphens) + * for proper font loading with expo-font. + */ + +// PostScript Names (correct format for React Native) +export const FONT_FAMILIES = { + GEIST_REGULAR: 'Geist-Regular', + GEIST_MEDIUM: 'Geist-Medium', + GEIST_BOLD: 'Geist-Bold', + GEIST_REGULAR_ITALIC: 'Geist-RegularItalic', + GEIST_MEDIUM_ITALIC: 'Geist-MediumItalic', + GEIST_BOLD_ITALIC: 'Geist-BoldItalic', + MMSANS_REGULAR: 'MMSans-Regular', + MMSANS_MEDIUM: 'MMSans-Medium', + MMSANS_BOLD: 'MMSans-Bold', + MMPOLY_REGULAR: 'MMPoly-Regular', +} as const; + +// Weight to font family mapping for Geist fonts +export const GEIST_WEIGHT_MAPPING = { + '100': 'Regular', + '200': 'Regular', + '300': 'Regular', + '400': 'Regular', + '500': 'Medium', + '600': 'Medium', + '700': 'Bold', + '800': 'Bold', + '900': 'Bold', + normal: 'Regular', + bold: 'Bold', +} as const; + +export type FontWeight = keyof typeof GEIST_WEIGHT_MAPPING; +export type FontStyle = 'normal' | 'italic'; +export type GeistFontSuffix = (typeof GEIST_WEIGHT_MAPPING)[FontWeight]; diff --git a/app/core/FontPreloader/FontPreloader.ts b/app/core/FontPreloader/FontPreloader.ts deleted file mode 100644 index a73918493517..000000000000 --- a/app/core/FontPreloader/FontPreloader.ts +++ /dev/null @@ -1,188 +0,0 @@ -import { Platform } from 'react-native'; -import { getFontFamily } from '../../component-library/components/Texts/Text/Text.utils'; -import { TextVariant } from '../../component-library/components/Texts/Text/Text.types'; -import Logger from '../../util/Logger'; - -/** - * FontPreloader ensures all custom fonts are loaded before UI components render - * This prevents placeholder text shifting issues when fonts load asynchronously - */ -class FontPreloader { - private static instance: FontPreloader; - private fontsLoaded = false; - private loadingPromise: Promise | null = null; - - static getInstance(): FontPreloader { - if (!FontPreloader.instance) { - FontPreloader.instance = new FontPreloader(); - } - return FontPreloader.instance; - } - - /** - * Preload all Geist font variants by creating invisible text elements - * This forces React Native to load and cache the fonts - */ - preloadFonts(): Promise { - // If we have a loading promise (even if fonts are loaded), return it for consistency - if (this.loadingPromise) { - return this.loadingPromise; - } - - // If fonts are already loaded and no promise exists, return resolved promise - if (this.fontsLoaded) { - return Promise.resolve(); - } - - Logger.log('FontPreloader: Starting font preloading...'); - - this.loadingPromise = new Promise((resolve) => { - try { - // Get all font variants used in the app - const fontVariants = [ - TextVariant.DisplayMD, - TextVariant.HeadingLG, - TextVariant.HeadingMD, - TextVariant.HeadingSM, - TextVariant.BodyLGMedium, - TextVariant.BodyMD, - TextVariant.BodyMDMedium, - TextVariant.BodySM, - TextVariant.BodySMMedium, - TextVariant.BodyXS, - ]; - - if (Platform.OS === 'web') { - this.preloadFontsWeb(fontVariants, resolve); - } else { - this.preloadFontsNative(fontVariants, resolve); - } - } catch (error) { - Logger.error( - new Error('FontPreloader: Error during font preloading'), - error, - ); - // Still resolve to prevent blocking the app - this.fontsLoaded = true; - resolve(); - } - }); - - return this.loadingPromise; - } - - /** - * Preload fonts for web platform using FontFace API - */ - private preloadFontsWeb( - fontVariants: TextVariant[], - resolve: () => void, - ): void { - const preloadContainer = document.createElement('div'); - preloadContainer.style.position = 'absolute'; - preloadContainer.style.left = '-9999px'; - preloadContainer.style.top = '-9999px'; - preloadContainer.style.visibility = 'hidden'; - - fontVariants.forEach((variant) => { - const fontFamily = getFontFamily(variant); - - // Create elements for Regular, Medium, and Bold weights - ['400', '500', '700'].forEach((weight) => { - const span = document.createElement('span'); - span.style.fontFamily = fontFamily; - span.style.fontWeight = weight; - span.textContent = 'Font preload test'; - preloadContainer.appendChild(span); - }); - }); - - document.body.appendChild(preloadContainer); - - // Use FontFace API if available - if ('fonts' in document) { - Promise.all([ - document.fonts.load('400 16px "Geist Regular"'), - document.fonts.load('500 16px "Geist Medium"'), - document.fonts.load('700 16px "Geist Bold"'), - ]) - .then(() => { - document.body.removeChild(preloadContainer); - this.fontsLoaded = true; - Logger.log('FontPreloader: Web fonts loaded successfully'); - resolve(); - }) - .catch((error) => { - Logger.error( - new Error('FontPreloader: Web font loading failed'), - error, - ); - // Fallback: wait for a short time then resolve - setTimeout(() => { - document.body.removeChild(preloadContainer); - this.fontsLoaded = true; - resolve(); - }, 200); - }); - } else { - // Fallback for older browsers - setTimeout(() => { - document.body.removeChild(preloadContainer); - this.fontsLoaded = true; - Logger.log('FontPreloader: Web fonts loaded (fallback)'); - resolve(); - }, 200); - } - } - - /** - * Preload fonts for React Native (iOS/Android) - * Fonts are typically loaded synchronously but we ensure they're cached - */ - private preloadFontsNative( - fontVariants: TextVariant[], - resolve: () => void, - ): void { - // For React Native, fonts are registered in Info.plist (iOS) and assets (Android) - // We create a small delay to ensure font cache is warmed up - const fontFamilies = fontVariants.map((variant) => getFontFamily(variant)); - - // Log the fonts we're expecting to be available - Logger.log('FontPreloader: Expected font families:', fontFamilies); - - // Small delay to ensure fonts are cached by the system - setTimeout( - () => { - this.fontsLoaded = true; - Logger.log('FontPreloader: Native fonts cached successfully'); - resolve(); - }, - Platform.OS === 'ios' ? 50 : 100, - ); // iOS is typically faster - } - - /** - * Check if fonts are loaded - */ - areFontsLoaded(): boolean { - return this.fontsLoaded; - } - - /** - * Reset font loading state (useful for testing) - */ - reset(): void { - this.fontsLoaded = false; - this.loadingPromise = null; - Logger.log('FontPreloader: Reset font loading state'); - } - - /** - * Get loading promise for external use - */ - getLoadingPromise(): Promise | null { - return this.loadingPromise; - } -} - -export default FontPreloader.getInstance(); diff --git a/app/core/FontPreloader/README.md b/app/core/FontPreloader/README.md deleted file mode 100644 index 32fbae2290b0..000000000000 --- a/app/core/FontPreloader/README.md +++ /dev/null @@ -1,174 +0,0 @@ -# FontPreloader - -A service to preload custom fonts and prevent placeholder text shifting issues in React Native applications. - -## Problem - -The MetaMask Mobile app uses custom Geist fonts. When TextInput components render before these fonts are fully loaded and cached, placeholder text can appear shifted or misaligned. This happens because: - -1. **Font Loading Race Conditions**: TextInput renders with system font, then shifts when custom font loads -2. **Platform Differences**: iOS and Android handle custom font loading differently -3. **Baseline Misalignment**: Custom fonts have different baseline metrics than system fonts -4. **Zero Padding Issues**: `paddingVertical: 0` combined with custom fonts causes positioning problems - -## Solution - -FontPreloader ensures all custom fonts are loaded and cached before any UI components render, eliminating text shifting issues. - -## Usage - -### Basic Usage - -```tsx -import FontPreloader from '../core/FontPreloader/FontPreloader'; - -// Check if fonts are loaded -if (FontPreloader.areFontsLoaded()) { - // Safe to render components with text -} - -// Preload fonts -await FontPreloader.preloadFonts(); -``` - -### With React Hook - -```tsx -import { useFontPreloader } from '../hooks/useFontPreloader'; - -const MyComponent = () => { - const fontsLoaded = useFontPreloader(); - - if (!fontsLoaded) { - return ; - } - - return ; -}; -``` - -### In Root Component - -```tsx -const Root = () => { - const fontsLoaded = useFontPreloader(); - - // Show loading until fonts are ready - if (!fontsLoaded) { - return ; - } - - return ; -}; -``` - -## How It Works - -1. **Early Loading**: Fonts are preloaded in `index.js` before app initialization -2. **Platform Detection**: Uses different strategies for web vs React Native -3. **Font Cache Warming**: Creates invisible text elements to trigger font loading -4. **Singleton Pattern**: Ensures single instance across app lifecycle -5. **Error Handling**: Gracefully handles loading failures without blocking app - -## Implementation Details - -### Web Platform - -- Creates invisible DOM elements with all font variants -- Uses FontFace API when available for precise loading detection -- Falls back to timeout-based loading for older browsers - -### React Native Platform - -- Fonts are pre-registered in `Info.plist` (iOS) and `assets` (Android) -- Uses short delay to ensure font cache is warmed up -- Platform-specific timing optimization - -### Font Variants Loaded - -- Geist Regular (400) -- Geist Medium (500) -- Geist Bold (700) -- All text variants used in the design system - -## API Reference - -### FontPreloader - -#### Methods - -- `preloadFonts(): Promise` - Preload all fonts -- `areFontsLoaded(): boolean` - Check if fonts are loaded -- `reset(): void` - Reset loading state (for testing) -- `getLoadingPromise(): Promise | null` - Get current loading promise - -### useFontPreloader Hook - -Returns `boolean` indicating if fonts are loaded. - -### useFontPreloaderWithStatus Hook - -Returns object with detailed loading state: - -```tsx -{ - loaded: boolean; - loading: boolean; - error: boolean; -} -``` - -## Integration Points - -1. **index.js**: Early preloading -2. **Root component**: Loading state management -3. **Input styles**: Font-aware padding and alignment -4. **Text components**: Baseline correction - -## Testing - -Run tests with: - -```bash -yarn jest app/core/FontPreloader/__tests__/FontPreloader.test.ts -``` - -## Performance Impact - -- **Initial Load**: ~50-100ms additional startup time -- **Memory**: Minimal - fonts are cached by system -- **Runtime**: Zero impact after initial load -- **Bundle Size**: ~2KB additional code - -## Browser Support - -- **Modern Browsers**: Full support with FontFace API -- **Legacy Browsers**: Fallback timeout-based loading -- **React Native**: Full support on iOS and Android - -## Troubleshooting - -### Fonts Still Shifting - -1. Check if fonts are registered in `Info.plist` (iOS) and `link-assets-manifest.json` -2. Verify font files exist in `app/fonts/` -3. Check console for FontPreloader error messages - -### Loading Taking Too Long - -1. Check network connectivity (web only) -2. Verify font file sizes aren't too large -3. Check for JavaScript errors preventing initialization - -### Tests Failing - -1. Ensure mocks are properly configured -2. Reset FontPreloader state between tests -3. Check for async test timing issues - -## Related Files - -- `app/component-library/components/Form/TextField/foundation/Input/Input.styles.ts` - Font-aware input styling -- `app/component-library/components/Texts/Text/Text.utils.ts` - Font family utilities -- `app/hooks/useFontPreloader.ts` - React hooks for font loading -- `app/components/Views/Root/index.tsx` - Root component integration diff --git a/app/core/FontPreloader/__tests__/FontPreloader.test.ts b/app/core/FontPreloader/__tests__/FontPreloader.test.ts deleted file mode 100644 index 60bfc20cf429..000000000000 --- a/app/core/FontPreloader/__tests__/FontPreloader.test.ts +++ /dev/null @@ -1,179 +0,0 @@ -import FontPreloader from '../FontPreloader'; - -// Mock Logger to avoid console output during tests -jest.mock('../../../util/Logger', () => ({ - log: jest.fn(), - error: jest.fn(), -})); - -// Mock Platform for React Native -jest.mock('react-native', () => ({ - Platform: { - OS: 'ios', - }, -})); - -// Mock getFontFamily -jest.mock( - '../../../component-library/components/Texts/Text/Text.utils', - () => ({ - getFontFamily: jest.fn((_variant) => `Geist Regular`), - }), -); - -describe('FontPreloader', () => { - beforeEach(() => { - jest.clearAllMocks(); - }); - - afterEach(() => { - FontPreloader.reset(); - }); - - it('should be a singleton', () => { - const instance1 = FontPreloader; - const instance2 = FontPreloader; - expect(instance1).toBe(instance2); - }); - - it('should initially report fonts as not loaded', () => { - FontPreloader.reset(); - expect(FontPreloader.areFontsLoaded()).toBe(false); - }); - - it('should preload fonts successfully on React Native', async () => { - FontPreloader.reset(); - expect(FontPreloader.areFontsLoaded()).toBe(false); - - // Mock setTimeout for immediate execution - const originalSetTimeout = global.setTimeout; - global.setTimeout = jest.fn().mockImplementation((callback: () => void) => { - callback(); // Execute immediately - return 123; - }) as unknown as typeof setTimeout; - - await FontPreloader.preloadFonts(); - - expect(FontPreloader.areFontsLoaded()).toBe(true); - - // Restore setTimeout - global.setTimeout = originalSetTimeout; - }); - - it('should not reload fonts if already loaded', async () => { - FontPreloader.reset(); - - // Mock setTimeout for immediate execution - const originalSetTimeout = global.setTimeout; - global.setTimeout = jest.fn().mockImplementation((callback: () => void) => { - callback(); // Execute immediately - return 123; - }) as unknown as typeof setTimeout; - - // First load - await FontPreloader.preloadFonts(); - const firstLoadResult = FontPreloader.areFontsLoaded(); - - // Second load attempt - await FontPreloader.preloadFonts(); - const secondLoadResult = FontPreloader.areFontsLoaded(); - - expect(firstLoadResult).toBe(true); - expect(secondLoadResult).toBe(true); - expect(firstLoadResult).toBe(secondLoadResult); - - // Restore setTimeout - global.setTimeout = originalSetTimeout; - }); - - it('should return the same promise for concurrent loading attempts', async () => { - // Reset to ensure clean state - FontPreloader.reset(); - - // Mock setTimeout to not resolve immediately - const originalSetTimeout = global.setTimeout; - let resolveCallback: (() => void) | undefined; - global.setTimeout = jest.fn().mockImplementation((callback: () => void) => { - resolveCallback = callback; - return 123; // mock timer id - }) as unknown as typeof setTimeout; - - // Make concurrent calls - should return same promise - const promise1 = FontPreloader.preloadFonts(); - const promise2 = FontPreloader.preloadFonts(); - - expect(promise1).toBe(promise2); - - // Clean up - resolve the promise and restore setTimeout - if (resolveCallback) { - resolveCallback(); - } - global.setTimeout = originalSetTimeout; - - await promise1; - }); - - it('should reset font loading state', async () => { - FontPreloader.reset(); - - // Mock setTimeout for this test too - const originalSetTimeout = global.setTimeout; - global.setTimeout = jest.fn().mockImplementation((callback: () => void) => { - callback(); // Execute immediately - return 123; - }) as unknown as typeof setTimeout; - - await FontPreloader.preloadFonts(); - expect(FontPreloader.areFontsLoaded()).toBe(true); - - FontPreloader.reset(); - expect(FontPreloader.areFontsLoaded()).toBe(false); - - // Restore setTimeout - global.setTimeout = originalSetTimeout; - }); - - it('should handle errors gracefully', async () => { - FontPreloader.reset(); - - // Mock setTimeout to throw an error - const originalSetTimeout = global.setTimeout; - const mockSetTimeout = jest.fn().mockImplementation(() => { - throw new Error('Test error'); - }); - global.setTimeout = mockSetTimeout as unknown as typeof setTimeout; - - // Should still resolve even if there's an error - await expect(FontPreloader.preloadFonts()).resolves.toBeUndefined(); - expect(FontPreloader.areFontsLoaded()).toBe(true); - - // Restore setTimeout - global.setTimeout = originalSetTimeout; - }); - - it('should provide loading promise access', async () => { - // Reset first to ensure clean state for this specific test - FontPreloader.reset(); - - // Mock setTimeout to control timing - const originalSetTimeout = global.setTimeout; - let resolveCallback: (() => void) | undefined; - global.setTimeout = jest.fn().mockImplementation((callback: () => void) => { - resolveCallback = callback; - return 123; // mock timer id - }) as unknown as typeof setTimeout; - - const loadingPromise = FontPreloader.preloadFonts(); - const retrievedPromise = FontPreloader.getLoadingPromise(); - - expect(retrievedPromise).toBe(loadingPromise); - - // Resolve and clean up - if (resolveCallback) { - resolveCallback(); - } - global.setTimeout = originalSetTimeout; - - await loadingPromise; - }); -}); diff --git a/app/features/SampleFeature/components/views/SampleCounterPane/__snapshots__/SampleCounterPane.test.tsx.snap b/app/features/SampleFeature/components/views/SampleCounterPane/__snapshots__/SampleCounterPane.test.tsx.snap index a4760ee398c5..08efb160d1fd 100644 --- a/app/features/SampleFeature/components/views/SampleCounterPane/__snapshots__/SampleCounterPane.test.tsx.snap +++ b/app/features/SampleFeature/components/views/SampleCounterPane/__snapshots__/SampleCounterPane.test.tsx.snap @@ -18,7 +18,7 @@ exports[`SampleCounterPane matches rendered snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -33,7 +33,7 @@ exports[`SampleCounterPane matches rendered snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -71,7 +71,7 @@ exports[`SampleCounterPane matches rendered snapshot 1`] = ` style={ { "color": "#ffffff", - "fontFamily": "Geist Medium", + "fontFamily": "Geist-Medium", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/features/SampleFeature/components/views/SamplePetNames/__snapshots__/SamplePetNames.test.tsx.snap b/app/features/SampleFeature/components/views/SamplePetNames/__snapshots__/SamplePetNames.test.tsx.snap index 077562d35a1e..59edbfe8955b 100644 --- a/app/features/SampleFeature/components/views/SamplePetNames/__snapshots__/SamplePetNames.test.tsx.snap +++ b/app/features/SampleFeature/components/views/SamplePetNames/__snapshots__/SamplePetNames.test.tsx.snap @@ -42,7 +42,7 @@ exports[`SamplePetNames matches rendered snapshot 1`] = ` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/features/SampleFeature/components/views/__snapshots__/SampleFeature.test.tsx.snap b/app/features/SampleFeature/components/views/__snapshots__/SampleFeature.test.tsx.snap index c8a8e746a9f7..a8b3f385c83b 100644 --- a/app/features/SampleFeature/components/views/__snapshots__/SampleFeature.test.tsx.snap +++ b/app/features/SampleFeature/components/views/__snapshots__/SampleFeature.test.tsx.snap @@ -57,7 +57,7 @@ exports[`SampleFeature matches rendered snapshot when feature flag is disabled 1 style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -72,7 +72,7 @@ exports[`SampleFeature matches rendered snapshot when feature flag is disabled 1 style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, @@ -149,7 +149,7 @@ exports[`SampleFeature matches rendered snapshot when feature flag is enabled 1` style={ { "color": "#121314", - "fontFamily": "Geist Bold", + "fontFamily": "Geist-Bold", "fontSize": 24, "letterSpacing": 0, "lineHeight": 32, @@ -164,7 +164,7 @@ exports[`SampleFeature matches rendered snapshot when feature flag is enabled 1` style={ { "color": "#686e7d", - "fontFamily": "Geist Regular", + "fontFamily": "Geist-Regular", "fontSize": 16, "letterSpacing": 0, "lineHeight": 24, diff --git a/app/hooks/useFontPreloader.ts b/app/hooks/useFontPreloader.ts deleted file mode 100644 index 3019ce10a99f..000000000000 --- a/app/hooks/useFontPreloader.ts +++ /dev/null @@ -1,97 +0,0 @@ -import { useEffect, useState } from 'react'; -import FontPreloader from '../core/FontPreloader/FontPreloader'; -import Logger from '../util/Logger'; - -/** - * Hook to manage font preloading state - * Returns true when all fonts are loaded and cached - */ -export const useFontPreloader = () => { - const [fontsLoaded, setFontsLoaded] = useState( - FontPreloader.areFontsLoaded(), - ); - - useEffect(() => { - let isMounted = true; - - if (!fontsLoaded) { - Logger.log('useFontPreloader: Starting font preloading...'); - - FontPreloader.preloadFonts() - .then(() => { - if (isMounted) { - Logger.log('useFontPreloader: Fonts loaded successfully'); - setFontsLoaded(true); - } - }) - .catch((error) => { - Logger.error( - new Error('useFontPreloader: Font loading failed'), - error, - ); - if (isMounted) { - // Still set to true to prevent blocking the app - setFontsLoaded(true); - } - }); - } - - return () => { - isMounted = false; - }; - }, [fontsLoaded]); - - return fontsLoaded; -}; - -/** - * Hook for components that need to know when fonts are ready - * with additional loading state information - */ -export const useFontPreloaderWithStatus = () => { - const [status, setStatus] = useState<{ - loaded: boolean; - loading: boolean; - error: boolean; - }>({ - loaded: FontPreloader.areFontsLoaded(), - loading: !FontPreloader.areFontsLoaded(), - error: false, - }); - - useEffect(() => { - let isMounted = true; - - if (!status.loaded && !status.error) { - FontPreloader.preloadFonts() - .then(() => { - if (isMounted) { - setStatus({ - loaded: true, - loading: false, - error: false, - }); - } - }) - .catch((error) => { - Logger.error( - new Error('useFontPreloaderWithStatus: Font loading failed'), - error, - ); - if (isMounted) { - setStatus({ - loaded: true, // Still set to true to prevent blocking - loading: false, - error: true, - }); - } - }); - } - - return () => { - isMounted = false; - }; - }, [status.loaded, status.error]); - - return status; -}; diff --git a/app/styles/common.ts b/app/styles/common.ts index 1990b32191bb..158cf16e9fc7 100644 --- a/app/styles/common.ts +++ b/app/styles/common.ts @@ -63,18 +63,18 @@ export const baseStyles: Record = { */ export const fontStyles: Record = { normal: { - fontFamily: 'Geist Regular', + fontFamily: 'Geist-Regular', }, light: { - fontFamily: 'Geist Regular', + fontFamily: 'Geist-Regular', }, thin: { - fontFamily: 'Geist Regular', + fontFamily: 'Geist-Regular', }, bold: { - fontFamily: 'Geist Bold', + fontFamily: 'Geist-Bold', }, medium: { - fontFamily: 'Geist Medium', + fontFamily: 'Geist-Medium', }, }; diff --git a/app/fonts/Geist Bold.otf b/assets/fonts/Geist-Bold.otf similarity index 100% rename from app/fonts/Geist Bold.otf rename to assets/fonts/Geist-Bold.otf diff --git a/app/fonts/Geist Bold Italic.otf b/assets/fonts/Geist-BoldItalic.otf similarity index 100% rename from app/fonts/Geist Bold Italic.otf rename to assets/fonts/Geist-BoldItalic.otf diff --git a/app/fonts/Geist Medium.otf b/assets/fonts/Geist-Medium.otf similarity index 100% rename from app/fonts/Geist Medium.otf rename to assets/fonts/Geist-Medium.otf diff --git a/app/fonts/Geist Medium Italic.otf b/assets/fonts/Geist-MediumItalic.otf similarity index 100% rename from app/fonts/Geist Medium Italic.otf rename to assets/fonts/Geist-MediumItalic.otf diff --git a/app/fonts/Geist Regular.otf b/assets/fonts/Geist-Regular.otf similarity index 100% rename from app/fonts/Geist Regular.otf rename to assets/fonts/Geist-Regular.otf diff --git a/app/fonts/Geist Regular Italic.otf b/assets/fonts/Geist-RegularItalic.otf similarity index 100% rename from app/fonts/Geist Regular Italic.otf rename to assets/fonts/Geist-RegularItalic.otf diff --git a/app/fonts/MM Poly Regular.otf b/assets/fonts/MMPoly-Regular.otf similarity index 100% rename from app/fonts/MM Poly Regular.otf rename to assets/fonts/MMPoly-Regular.otf diff --git a/app/fonts/MM Sans Bold.otf b/assets/fonts/MMSans-Bold.otf similarity index 100% rename from app/fonts/MM Sans Bold.otf rename to assets/fonts/MMSans-Bold.otf diff --git a/app/fonts/MM Sans Medium.otf b/assets/fonts/MMSans-Medium.otf similarity index 100% rename from app/fonts/MM Sans Medium.otf rename to assets/fonts/MMSans-Medium.otf diff --git a/app/fonts/MM Sans Regular.otf b/assets/fonts/MMSans-Regular.otf similarity index 100% rename from app/fonts/MM Sans Regular.otf rename to assets/fonts/MMSans-Regular.otf diff --git a/ios/MetaMask/Info.plist b/ios/MetaMask/Info.plist index 530c8dc8b8b0..7548550bbdc8 100644 --- a/ios/MetaMask/Info.plist +++ b/ios/MetaMask/Info.plist @@ -87,16 +87,16 @@ FontAwesome5_Brands.ttf FontAwesome5_Regular.ttf FontAwesome5_Solid.ttf - MM Poly Regular.otf - MM Sans Bold.otf - MM Sans Medium.otf - MM Sans Regular.otf - Geist Bold Italic.otf - Geist Bold.otf - Geist Medium Italic.otf - Geist Medium.otf - Geist Regular Italic.otf - Geist Regular.otf + MMPoly-Regular.otf + MMSans-Bold.otf + MMSans-Medium.otf + MMSans-Regular.otf + Geist-BoldItalic.otf + Geist-Bold.otf + Geist-MediumItalic.otf + Geist-Medium.otf + Geist-RegularItalic.otf + Geist-Regular.otf UIBackgroundModes diff --git a/ios/MetaMask/MetaMask-Flask-Info.plist b/ios/MetaMask/MetaMask-Flask-Info.plist index 9e2596f7a96a..32d46afb5f1d 100644 --- a/ios/MetaMask/MetaMask-Flask-Info.plist +++ b/ios/MetaMask/MetaMask-Flask-Info.plist @@ -97,16 +97,16 @@ CentraNo1-BookItalic.otf CentraNo1-Medium.otf CentraNo1-MediumItalic.otf - MM Poly Regular.otf - MM Sans Bold.otf - MM Sans Medium.otf - MM Sans Regular.otf - Geist Bold Italic.otf - Geist Bold.otf - Geist Medium Italic.otf - Geist Medium.otf - Geist Regular Italic.otf - Geist Regular.otf + MMPoly-Regular.otf + MMSans-Bold.otf + MMSans-Medium.otf + MMSans-Regular.otf + Geist-BoldItalic.otf + Geist-Bold.otf + Geist-MediumItalic.otf + Geist-Medium.otf + Geist-RegularItalic.otf + Geist-Regular.otf UILaunchStoryboardName LaunchScreen diff --git a/ios/MetaMask/MetaMask-QA-Info.plist b/ios/MetaMask/MetaMask-QA-Info.plist index 5fd695df158f..ba92432f023c 100644 --- a/ios/MetaMask/MetaMask-QA-Info.plist +++ b/ios/MetaMask/MetaMask-QA-Info.plist @@ -97,16 +97,16 @@ CentraNo1-BookItalic.otf CentraNo1-Medium.otf CentraNo1-MediumItalic.otf - MM Poly Regular.otf - MM Sans Bold.otf - MM Sans Medium.otf - MM Sans Regular.otf - Geist Bold Italic.otf - Geist Bold.otf - Geist Medium Italic.otf - Geist Medium.otf - Geist Regular Italic.otf - Geist Regular.otf + MMPoly-Regular.otf + MMSans-Bold.otf + MMSans-Medium.otf + MMSans-Regular.otf + Geist-BoldItalic.otf + Geist-Bold.otf + Geist-MediumItalic.otf + Geist-Medium.otf + Geist-RegularItalic.otf + Geist-Regular.otf UILaunchStoryboardName LaunchScreen diff --git a/ios/MetaMask/PrivacyInfo.xcprivacy b/ios/MetaMask/PrivacyInfo.xcprivacy index 634d907c8547..078969cefccd 100644 --- a/ios/MetaMask/PrivacyInfo.xcprivacy +++ b/ios/MetaMask/PrivacyInfo.xcprivacy @@ -20,8 +20,8 @@ NSPrivacyAccessedAPITypeReasons C617.1 - 3B52.1 0A2A.1 + 3B52.1 DDA9.1 diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 161702ae662e..c90e5c3547a0 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -270,28 +270,6 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - ExpoScreenOrientation (8.0.4): - - DoubleConversion - - ExpoModulesCore - - glog - - hermes-engine - - RCT-Folly (= 2024.10.14.00) - - RCTRequired - - RCTTypeSafety - - React-Core - - React-debug - - React-Fabric - - React-featureflags - - React-graphics - - React-ImageManager - - React-NativeModulesApple - - React-RCTFabric - - React-rendererdebug - - React-utils - - ReactCodegen - - ReactCommon/turbomodule/bridging - - ReactCommon/turbomodule/core - - Yoga - ExpoSensors (14.0.2): - ExpoModulesCore - ExpoWebBrowser (14.0.2): @@ -417,12 +395,12 @@ PODS: - libavif/core - libdav1d (>= 0.6.0) - libdav1d (1.2.0) - - lottie-ios (4.4.1) - - lottie-react-native (6.7.2): + - lottie-ios (4.5.0) + - lottie-react-native (7.1.0): - DoubleConversion - glog - hermes-engine - - lottie-ios (= 4.4.1) + - lottie-ios (= 4.5.0) - RCT-Folly (= 2024.10.14.00) - RCTRequired - RCTTypeSafety @@ -1893,7 +1871,29 @@ PODS: - Yoga - react-native-netinfo (11.4.1): - React-Core - - react-native-pager-view (6.7.1): + - react-native-pager-view (6.5.1): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.10.14.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - react-native-pager-view/common (= 6.5.1) + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - react-native-pager-view/common (6.5.1): - DoubleConversion - glog - hermes-engine @@ -1985,7 +1985,7 @@ PODS: - Yoga - react-native-render-html (6.3.4): - React-Core - - react-native-safe-area-context (5.4.0): + - react-native-safe-area-context (4.12.0): - DoubleConversion - glog - hermes-engine @@ -1998,8 +1998,8 @@ PODS: - React-featureflags - React-graphics - React-ImageManager - - react-native-safe-area-context/common (= 5.4.0) - - react-native-safe-area-context/fabric (= 5.4.0) + - react-native-safe-area-context/common (= 4.12.0) + - react-native-safe-area-context/fabric (= 4.12.0) - React-NativeModulesApple - React-RCTFabric - React-rendererdebug @@ -2008,7 +2008,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - react-native-safe-area-context/common (5.4.0): + - react-native-safe-area-context/common (4.12.0): - DoubleConversion - glog - hermes-engine @@ -2029,7 +2029,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - react-native-safe-area-context/fabric (5.4.0): + - react-native-safe-area-context/fabric (4.12.0): - DoubleConversion - glog - hermes-engine @@ -2051,7 +2051,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - react-native-slider (4.5.6): + - react-native-slider (4.5.5): - DoubleConversion - glog - hermes-engine @@ -2064,7 +2064,7 @@ PODS: - React-featureflags - React-graphics - React-ImageManager - - react-native-slider/common (= 4.5.6) + - react-native-slider/common (= 4.5.5) - React-NativeModulesApple - React-RCTFabric - React-rendererdebug @@ -2073,7 +2073,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - react-native-slider/common (4.5.6): + - react-native-slider/common (4.5.5): - DoubleConversion - glog - hermes-engine @@ -2162,8 +2162,27 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - react-native-view-shot (3.8.0): + - react-native-view-shot (4.0.3): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.10.14.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga - react-native-webview-mm (14.5.0): - DoubleConversion - glog @@ -2463,7 +2482,7 @@ PODS: - React-Core - RiveRuntime (= 6.9.4) - RiveRuntime (6.9.4) - - RNCAsyncStorage (1.24.0): + - RNCAsyncStorage (1.23.1): - DoubleConversion - glog - hermes-engine @@ -2529,7 +2548,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - RNDateTimePicker (8.3.0): + - RNDateTimePicker (8.2.0): - DoubleConversion - glog - hermes-engine @@ -2562,9 +2581,7 @@ PODS: - FirebaseCoreExtension - React-Core - RNFBApp - - RNFS (2.20.0): - - React-Core - - RNGestureHandler (2.25.0): + - RNFlashList (1.7.3): - DoubleConversion - glog - hermes-engine @@ -2585,11 +2602,9 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - RNI18n (2.0.15): - - React - - RNInAppBrowser (3.7.0): + - RNFS (2.20.0): - React-Core - - RNKeychain (9.2.3): + - RNGestureHandler (2.20.2): - DoubleConversion - glog - hermes-engine @@ -2610,14 +2625,11 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - RNNotifee (9.0.2): - - React-Core - - RNNotifee/NotifeeCore (= 9.0.2) - - RNNotifee/NotifeeCore (9.0.2): - - React-Core - - RNOS (1.2.6): + - RNI18n (2.0.15): - React - - RNPermissions (3.10.1): + - RNInAppBrowser (3.7.0): + - React-Core + - RNKeychain (9.2.3): - DoubleConversion - glog - hermes-engine @@ -2638,7 +2650,14 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - RNReanimated (3.17.5): + - RNNotifee (9.0.2): + - React-Core + - RNNotifee/NotifeeCore (= 9.0.2) + - RNNotifee/NotifeeCore (9.0.2): + - React-Core + - RNOS (1.2.6): + - React + - RNPermissions (3.10.1): - DoubleConversion - glog - hermes-engine @@ -2650,9 +2669,7 @@ PODS: - React-Fabric - React-featureflags - React-graphics - - React-hermes - React-ImageManager - - React-jsi - React-NativeModulesApple - React-RCTFabric - React-rendererdebug @@ -2660,10 +2677,8 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNReanimated/reanimated (= 3.17.5) - - RNReanimated/worklets (= 3.17.5) - Yoga - - RNReanimated/reanimated (3.17.5): + - RNReanimated (3.16.7): - DoubleConversion - glog - hermes-engine @@ -2675,9 +2690,7 @@ PODS: - React-Fabric - React-featureflags - React-graphics - - React-hermes - React-ImageManager - - React-jsi - React-NativeModulesApple - React-RCTFabric - React-rendererdebug @@ -2685,9 +2698,10 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNReanimated/reanimated/apple (= 3.17.5) + - RNReanimated/reanimated (= 3.16.7) + - RNReanimated/worklets (= 3.16.7) - Yoga - - RNReanimated/reanimated/apple (3.17.5): + - RNReanimated/reanimated (3.16.7): - DoubleConversion - glog - hermes-engine @@ -2699,9 +2713,7 @@ PODS: - React-Fabric - React-featureflags - React-graphics - - React-hermes - React-ImageManager - - React-jsi - React-NativeModulesApple - React-RCTFabric - React-rendererdebug @@ -2709,8 +2721,9 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core + - RNReanimated/reanimated/apple (= 3.16.7) - Yoga - - RNReanimated/worklets (3.17.5): + - RNReanimated/reanimated/apple (3.16.7): - DoubleConversion - glog - hermes-engine @@ -2722,9 +2735,7 @@ PODS: - React-Fabric - React-featureflags - React-graphics - - React-hermes - React-ImageManager - - React-jsi - React-NativeModulesApple - React-RCTFabric - React-rendererdebug @@ -2732,9 +2743,8 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNReanimated/worklets/apple (= 3.17.5) - Yoga - - RNReanimated/worklets/apple (3.17.5): + - RNReanimated/worklets (3.16.7): - DoubleConversion - glog - hermes-engine @@ -2746,9 +2756,7 @@ PODS: - React-Fabric - React-featureflags - React-graphics - - React-hermes - React-ImageManager - - React-jsi - React-NativeModulesApple - React-RCTFabric - React-rendererdebug @@ -2757,7 +2765,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - RNScreens (3.37.0): + - RNScreens (4.4.0): - DoubleConversion - glog - hermes-engine @@ -2778,9 +2786,9 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNScreens/common (= 3.37.0) + - RNScreens/common (= 4.4.0) - Yoga - - RNScreens/common (3.37.0): + - RNScreens/common (4.4.0): - DoubleConversion - glog - hermes-engine @@ -2804,7 +2812,7 @@ PODS: - Yoga - RNSensors (5.3.0): - React - - RNSentry (6.15.1): + - RNSentry (6.10.0): - DoubleConversion - glog - hermes-engine @@ -2825,11 +2833,11 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - Sentry/HybridSDK (= 8.52.1) + - Sentry/HybridSDK (= 8.48.0) - Yoga - RNShare (7.3.7): - React-Core - - RNSVG (15.11.2): + - RNSVG (15.8.0): - DoubleConversion - glog - hermes-engine @@ -2849,9 +2857,9 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNSVG/common (= 15.11.2) + - RNSVG/common (= 15.8.0) - Yoga - - RNSVG/common (15.11.2): + - RNSVG/common (15.8.0): - DoubleConversion - glog - hermes-engine @@ -2896,7 +2904,7 @@ PODS: - SDWebImage (5.19.7): - SDWebImage/Core (= 5.19.7) - SDWebImage/Core (5.19.7) - - SDWebImageAVIFCoder (0.11.0): + - SDWebImageAVIFCoder (0.11.1): - libavif/core (>= 0.11.0) - SDWebImage (~> 5.10) - SDWebImageSVGCoder (1.7.0): @@ -2904,7 +2912,7 @@ PODS: - segment-analytics-react-native (2.20.3): - React-Core - sovran-react-native - - Sentry/HybridSDK (8.52.1) + - Sentry/HybridSDK (8.48.0) - SocketRocket (0.7.1) - sovran-react-native (1.0.4): - React-Core @@ -2940,7 +2948,6 @@ DEPENDENCIES: - ExpoKeepAwake (from `../node_modules/expo-keep-awake/ios`) - ExpoLinking (from `../node_modules/expo-linking/ios`) - ExpoModulesCore (from `../node_modules/expo-modules-core`) - - ExpoScreenOrientation (from `../node_modules/expo-screen-orientation/ios`) - ExpoSensors (from `../node_modules/expo-sensors/ios`) - ExpoWebBrowser (from `../node_modules/expo-web-browser/ios`) - EXStructuredHeaders (from `../node_modules/expo-structured-headers/ios`) @@ -3057,6 +3064,7 @@ DEPENDENCIES: - RNDeviceInfo (from `../node_modules/react-native-device-info`) - "RNFBApp (from `../node_modules/@react-native-firebase/app`)" - "RNFBMessaging (from `../node_modules/@react-native-firebase/messaging`)" + - "RNFlashList (from `../node_modules/@shopify/flash-list`)" - RNFS (from `../node_modules/react-native-fs`) - RNGestureHandler (from `../node_modules/react-native-gesture-handler`) - RNI18n (from `../node_modules/react-native-i18n`) @@ -3156,8 +3164,6 @@ EXTERNAL SOURCES: :path: "../node_modules/expo-linking/ios" ExpoModulesCore: :path: "../node_modules/expo-modules-core" - ExpoScreenOrientation: - :path: "../node_modules/expo-screen-orientation/ios" ExpoSensors: :path: "../node_modules/expo-sensors/ios" ExpoWebBrowser: @@ -3379,6 +3385,8 @@ EXTERNAL SOURCES: :path: "../node_modules/@react-native-firebase/app" RNFBMessaging: :path: "../node_modules/@react-native-firebase/messaging" + RNFlashList: + :path: "../node_modules/@shopify/flash-list" RNFS: :path: "../node_modules/react-native-fs" RNGestureHandler: @@ -3423,35 +3431,34 @@ SPEC CHECKSUMS: BEMCheckBox: 5ba6e37ade3d3657b36caecc35c8b75c6c2b1a4e boost: 1dca942403ed9342f98334bf4c3621f011aa7946 Branch: 4ac024cb3c29b0ef628048694db3c4cfa679beb0 - BVLinearGradient: cb006ba232a1f3e4f341bb62c42d1098c284da70 + BVLinearGradient: 880f91a7854faff2df62518f0281afb1c60d49a3 CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 DoubleConversion: f16ae600a246532c4020132d54af21d0ddb2a385 - EASClient: 88b5fd19d0787186a0c7e6ba76deb2d4f96395ce - EXApplication: 4c72f6017a14a65e338c5e74fca418f35141e819 - EXConstants: fcfc75800824ac2d5c592b5bc74130bad17b146b + EASClient: 68ffef26f551980423751c44c870759842b3340f + EXApplication: 27a524f5c3e671c6218220fba04752629466a1a9 + EXConstants: a1f35b9aabbb3c6791f8e67722579b1ffcdd3f18 EXJSONUtils: 01fc7492b66c234e395dcffdd5f53439c5c29c93 - EXManifests: a19d50504b8826546a4782770317bc83fffec87d - Expo: 1687edb10c76b0c0f135306d6ae245379f50ed54 - expo-dev-client: db44302cdbe0ec55b0ef1849c9a23a76dec6dbac - expo-dev-launcher: 792cd1c83fbec4a1a66fe91a0c283368dbad851c - expo-dev-menu: dd3197d2b0107ee036ffd85f95e75a950ab52ada + EXManifests: 77e77c283c4c53a50b9bddebed25abe93f0b48f1 + Expo: 3ddf0d76db6b3eef5d1d9f869676d3b69d95305f + expo-dev-client: ca3ebc270cb0d3f26e6d9c3e1da19957ef4fcac1 + expo-dev-launcher: dc460ac52ccec6e72f80de7c6fbe011ee312873c + expo-dev-menu: 32f62936b2b3ebb3ff84fcdcb5b927a36f80393a expo-dev-menu-interface: 00dc42302a72722fdecec3fa048de84a9133bcc4 - ExpoAppleAuthentication: 52631ed9dcb71c65712a447bbb9a5667bb8fcf0c - ExpoAsset: 48386d40d53a8c1738929b3ed509bcad595b5516 - ExpoCrypto: e97e864c8d7b9ce4a000bca45dddb93544a1b2b4 - ExpoFileSystem: 42d363d3b96f9afab980dcef60d5657a4443c655 - ExpoFont: f354e926f8feae5e831ec8087f36652b44a0b188 - ExpoHaptics: 8d199b2f33245ea85289ff6c954c7ee7c00a5b5d - ExpoImage: d840b256050f4428d2942bc2b6e9251f9e0d7021 - ExpoKeepAwake: b0171a73665bfcefcfcc311742a72a956e6aa680 - ExpoLinking: 8d12bee174ba0cdf31239706578e29e74a417402 - ExpoModulesCore: c25d77625038b1968ea1afefc719862c0d8dd993 - ExpoScreenOrientation: af8b31d3164239a4ef3ea0b32bd63fb65df70d58 - ExpoSensors: 02a52ddab1e3a8a1438258c3d87d1ee5f721743a - ExpoWebBrowser: a212e6b480d8857d3e441fba51e0c968333803b3 + ExpoAppleAuthentication: ee61704f441b3ef10a3d1280acbb6b9e2e04a38d + ExpoAsset: 0687fe05f5d051c4a34dd1f9440bd00858413cfe + ExpoCrypto: 1eaf79360c8135af1f2ebb133394fd3513ca9a3d + ExpoFileSystem: c8c19bf80d914c83dda3beb8569d7fb603be0970 + ExpoFont: 773955186469acc5108ff569712a2d243857475f + ExpoHaptics: e01cce0741d68c281853118eb0267f88d42c6b7a + ExpoImage: c37f79e5e97e0a662ed1c4b17363464007da3148 + ExpoKeepAwake: 2a5f15dd4964cba8002c9a36676319a3394c85c7 + ExpoLinking: 0381341519ca7180a3a057d20edb1cf6a908aaf4 + ExpoModulesCore: dd965804a882f1dbb6036fceea4d912461aeaa0d + ExpoSensors: 55a2e86242c9b2560d0d25640f79e4b9f5321df6 + ExpoWebBrowser: 6890a769e6c9d83da938dceb9a03e764afc3ec9c EXStructuredHeaders: 09c70347b282e3d2507e25fb4c747b1b885f87f6 - EXUpdates: 4fc73950af0af03388063823e75eb2f7566a48c9 - EXUpdatesInterface: 7c977640bdd8b85833c19e3959ba46145c5719db + EXUpdates: 0b468b4a20b730aee58c5cd00e32a6da9d6f52a9 + EXUpdatesInterface: 1dcebac98ac5dad4289e6ff2bd5616822e894397 fast_float: 06eeec4fe712a76acc9376682e4808b05ce978b6 FBLazyVector: 7605ea4810e0e10ae4815292433c09bf4324ba45 Firebase: cec914dab6fd7b1bd8ab56ea07ce4e03dd251c2d @@ -3462,7 +3469,7 @@ SPEC CHECKSUMS: FirebaseMessaging: 7b5d8033e183ab59eb5b852a53201559e976d366 fmt: 01b82d4ca6470831d1cc0852a1af644be019e8f6 glog: 08b301085f15bcbb6ff8632a8ebaf239aae04e6a - GoogleAcm: 4f94b931a68ea542ebff39fd35c766984af08cdd + GoogleAcm: 2456aa34f6d6542df291b1660a09c044127c5883 GoogleDataTransport: 6c09b596d841063d76d4288cc2d2f42cc36e1e2a GoogleUtilities: ea963c370a38a8069cc5f7ba4ca849a60b6d7d15 GZIP: 3c0abf794bfce8c7cb34ea05a1837752416c8868 @@ -3470,138 +3477,139 @@ SPEC CHECKSUMS: hermes-engine: 9e868dc7be781364296d6ee2f56d0c1a9ef0bb11 libavif: 84bbb62fb232c3018d6f1bab79beea87e35de7b7 libdav1d: 23581a4d8ec811ff171ed5e2e05cd27bad64c39f - lottie-ios: e047b1d2e6239b787cc5e9755b988869cf190494 - lottie-react-native: 7f3fc3f396b1d6c7b1454b77596bd2ad3151871e + lottie-ios: a881093fab623c467d3bce374367755c272bdd59 + lottie-react-native: 4b68aeec413825759afde9a421c47d016c715c5a MultiplatformBleAdapter: b1fddd0d499b96b607e00f0faa8e60648343dc1d nanopb: 438bc412db1928dac798aa6fd75726007be04262 - NativeUtils: ff6b807548ac292267c8bd50b6f1dfb4c9f056d3 - NitroModules: 54cf4604a7e458d788aeecb3ba1ff7db43ed17f2 + NativeUtils: 361503d1435f175f195586a1277a441d5786b80c + NitroModules: 1c290e002be88167c4b41ddf0b1aaa5624e8ecb1 OpenSSL-Universal: 6082b0bf950e5636fe0d78def171184e2b3899c2 - Permission-BluetoothPeripheral: 34ab829f159c6cf400c57bac05f5ba1b0af7a86e + Permission-BluetoothPeripheral: 247e379c9ecb4b1af2b87f73e4a15a00a5bc0c1f PromisesObjC: f5707f49cb48b9636751c5b2e7d227e43fba9f47 - RCT-Folly: ea9d9256ba7f9322ef911169a9f696e5857b9e17 + RCT-Folly: 7b4f73a92ad9571b9dbdb05bb30fad927fa971e1 RCTDeprecation: ebe712bb05077934b16c6bf25228bdec34b64f83 RCTRequired: ca91e5dd26b64f577b528044c962baf171c6b716 - RCTSearchApi: 5fc36140c598a74fd831dca924a28ed53bc7aa18 + RCTSearchApi: d2d38a5a7bffbfb144e2c770fbb30f51b1053067 RCTTypeSafety: e7678bd60850ca5a41df9b8dc7154638cb66871f ReachabilitySwift: 32793e867593cfc1177f5d16491e3a197d2fccda React: 4641770499c39f45d4e7cde1eba30e081f9d8a3d React-callinvoker: 4bef67b5c7f3f68db5929ab6a4d44b8a002998ea React-Codegen: 4b8b4817cea7a54b83851d4c1f91f79aa73de30a - React-Core: a68cea3e762814e60ecc3fa521c7f14c36c99245 - React-CoreModules: d81b1eaf8066add66299bab9d23c9f00c9484c7c - React-cxxreact: 984f8b1feeca37181d4e95301fcd6f5f6501c6ab + React-Core: 0a06707a0b34982efc4a556aff5dae4b22863455 + React-CoreModules: 907334e94314189c2e5eed4877f3efe7b26d85b0 + React-cxxreact: 3a1d5e8f4faa5e09be26614e9c8bbcae8d11b73d React-debug: 817160c07dc8d24d020fbd1eac7b3558ffc08964 - React-defaultsnativemodule: 18a684542f82ce1897552a1c4b847be414c9566e - React-domnativemodule: 90bdd4ec3ab38c47cfc3461c1e9283a8507d613f - React-Fabric: f6dade7007533daeb785ba5925039d83f343be4b - React-FabricComponents: b0655cc3e1b5ae12a4a1119aa7d8308f0ad33520 - React-FabricImage: 9b157c4c01ac2bf433f834f0e1e5fe234113a576 + React-defaultsnativemodule: 814830ccbc3fb08d67d0190e63b179ee4098c67b + React-domnativemodule: 270acf94bd0960b026bc3bfb327e703665d27fb4 + React-Fabric: 64586dc191fc1c170372a638b8e722e4f1d0a09b + React-FabricComponents: b0ebd032387468ea700574c581b139f57a7497fb + React-FabricImage: 81f0e0794caf25ad1224fa406d288fbc1986607f React-featureflags: f2792b067a351d86fdc7bec23db3b9a2f2c8d26c - React-featureflagsnativemodule: 742a8325b3c821d2a1ca13a6d2a0fc72d04555e0 - React-graphics: 68969e4e49d73f89da7abef4116c9b5f466aa121 - React-hermes: ac0bcba26a5d288ebc99b500e1097da2d0297ddf - React-idlecallbacksnativemodule: d61d9c9816131bf70d3d80cd04889fc625ee523f - React-ImageManager: e906eec93a9eb6102a06576b89d48d80a4683020 - React-jserrorhandler: ac5dde01104ff444e043cad8f574ca02756e20d6 - React-jsi: 496fa2b9d63b726aeb07d0ac800064617d71211d - React-jsiexecutor: dd22ab48371b80f37a0a30d0e8915b6d0f43a893 - React-jsinspector: 4629ac376f5765e684d19064f2093e55c97fd086 - React-jsitracing: 7a1c9cd484248870cf660733cd3b8114d54c035f - React-logger: c4052eb941cca9a097ef01b59543a656dc088559 - React-Mapbuffer: 33546a3ebefbccb8770c33a1f8a5554fa96a54de - React-microtasksnativemodule: d80ff86c8902872d397d9622f1a97aadcc12cead - react-native-aes: e8b2e113d532b0efb6449754492aee9c218dd502 - react-native-background-timer: 007ff829f79644caf2ed013e22f0563560336f86 - react-native-ble-plx: d62fdd568ede8051369f8343f5bb9cf737b1c918 - react-native-blob-util: b968f30ac26f1330dd5bd6f62043e25eb4738582 - react-native-branch: 76e1f947b40597727e6faa5cba5824d7ecf6c6b0 - react-native-compat: e3f7645274bc740117c68e35082d2d4082af6dc0 - react-native-cookies: d648ab7025833b977c0b19e142503034f5f29411 - react-native-fast-crypto: 6b448866f5310cf203714a21147ef67f735bea8e - react-native-get-random-values: d16467cf726c618e9c7a8c3c39c31faa2244bbba - react-native-gzip: 794e0e964a0d9e1dfd1773fee938adb4d4310e26 - react-native-in-app-review: b3d1eed3d1596ebf6539804778272c4c65e4a400 - react-native-launch-arguments: 7eb321ed3f3ef19b3ec4a2eca71c4f9baee76b41 - react-native-mmkv: ef0ad6b44a71c90c660234cae828bfb3c0e43a26 - react-native-netinfo: cec9c4e86083cb5b6aba0e0711f563e2fbbff187 - react-native-pager-view: 037f840721979489b44aed1432f9382556e46781 - react-native-performance: f443f41ed04425e16a4f9b3f680f9d9e7fe09959 - react-native-quick-base64: 17dc4b8daee50e680d5f57cc3ee6773b6ee0110a - react-native-quick-crypto: 7a9ba486072f5081c908d487d520aba218409f76 - react-native-randombytes: 3c8f3e89d12487fd03a2f966c288d495415fc116 - react-native-release-profiler: fdca7c73a6e6a03fa2a343f5088fce4787e8d4ee - react-native-render-html: 5afc4751f1a98621b3009432ef84c47019dcb2bd - react-native-safe-area-context: c68127652d8b9a26a28ac9597167a3ad90bcd713 - react-native-slider: e4b7f9d0616032ec2909ba073731eabcde242256 - react-native-tcp-socket: 120072c8020262032773f80f0daaf3964aaa08a1 - react-native-video: 3bb92b90b2774144fac7d43d52d11b936e8a14ec - react-native-view-shot: d1a701eb0719c6dccbd20b4bb43b1069f304cb70 - react-native-webview-mm: b9630326cca01837e1176dc3fb2310258fe49877 + React-featureflagsnativemodule: 0d7091ae344d6160c0557048e127897654a5c00f + React-graphics: cbebe910e4a15b65b0bff94a4d3ed278894d6386 + React-hermes: ec18c10f5a69d49fb9b5e17ae95494e9ea13d4d3 + React-idlecallbacksnativemodule: 6b84add48971da9c40403bd1860d4896462590f2 + React-ImageManager: f2a4c01c2ccb2193e60a20c135da74c7ca4d36f2 + React-jserrorhandler: 61d205b5a7cbc57fed3371dd7eed48c97f49fc64 + React-jsi: 95f7676103137861b79b0f319467627bcfa629ee + React-jsiexecutor: 41e0fe87cda9ea3970ffb872ef10f1ff8dbd1932 + React-jsinspector: 15578208796723e5c6f39069b6e8bf36863ef6e2 + React-jsitracing: 3758cdb155ea7711f0e77952572ea62d90c69f0b + React-logger: dbca7bdfd4aa5ef69431362bde6b36d49403cb20 + React-Mapbuffer: 6efad4a606c1fae7e4a93385ee096681ef0300dc + React-microtasksnativemodule: a645237a841d733861c70b69908ab4a1707b52ad + react-native-aes: 0143040f4e0cb19296b69b4acc7ddd8d3df9d62d + react-native-background-timer: 1b6e6b4e10f1b74c367a1fdc3c72b67c619b222b + react-native-ble-plx: d8dae4bbe0c554b190f04ed6cf3252a4f7656c05 + react-native-blob-util: e0b5796661d514c398cc4373c9e38d821f50e8e0 + react-native-branch: 4e42fda662d96893afbbd02839806931398e3d2e + react-native-compat: 01a8a3cd527295c08dabe19178ce0c6a1220b224 + react-native-cookies: f54fcded06bb0cda05c11d86788020b43528a26c + react-native-fast-crypto: 5943c42466b86ad70be60d3a5f64bd22251e5d9e + react-native-get-random-values: 21325b2244dfa6b58878f51f9aa42821e7ba3d06 + react-native-gzip: d7462beef56ae0c2fd1b50623060f48033136e41 + react-native-in-app-review: db8bb167a5f238e7ceca5c242d6b36ce8c4404a4 + react-native-launch-arguments: 4e0fd58e56dcc7f52eedef9dc8eff81eb73ced7a + react-native-mmkv: 4b3326800276b532f3c69d88ed341fc806ed1868 + react-native-netinfo: f0a9899081c185db1de5bb2fdc1c88c202a059ac + react-native-pager-view: 35fb3d9dad2fe1749806d524c0aa9590720166d4 + react-native-performance: 26808f7771a591619a20a335954a0d27ffdf0720 + react-native-quick-base64: 5c67f3f20cf7878e9deb449188b432de897d212c + react-native-quick-crypto: 4c0af096339da2d20ec1bfa3b3555cd0fcc99036 + react-native-randombytes: 421f1c7d48c0af8dbcd471b0324393ebf8fe7846 + react-native-release-profiler: 66edcab5307554b54313f9d1be17f163165e3594 + react-native-render-html: 984dfe2294163d04bf5fe25d7c9f122e60e05ebe + react-native-safe-area-context: 0dfbd139206a79364916959bc8b1a6bea3caba97 + react-native-slider: e500e3bac6ce86f2368bfc376e260a1957f6f5d9 + react-native-tcp-socket: feb47ef87c6f598ec2a85b7534a279282ce6f925 + react-native-video: ee9321d86b92b590a20ba2491bd2ebb9675c9876 + react-native-view-shot: 122943472b0b17ccab997d1caedbb4e83b80787f + react-native-webview-mm: 10a1f4440435ed274cfbfc64ce88ba5b8b01ba83 React-nativeconfig: 8efdb1ef1e9158c77098a93085438f7e7b463678 - React-NativeModulesApple: cebca2e5320a3d66e123cade23bd90a167ffce5e - React-perflogger: 72e653eb3aba9122f9e57cf012d22d2486f33358 - React-performancetimeline: cd6a9374a72001165995d2ab632f672df04076dc + React-NativeModulesApple: 958d4f6c5c2ace4c0f427cf7ef82e28ae6538a22 + React-perflogger: 9b4f13c0afe56bc7b4a0e93ec74b1150421ee22d + React-performancetimeline: 359db1cb889aa0282fafc5838331b0987c4915a9 React-RCTActionSheet: aacf2375084dea6e7c221f4a727e579f732ff342 - React-RCTAnimation: 395ab53fd064dff81507c15efb781c8684d9a585 - React-RCTAppDelegate: 345a6f1b82abc578437df0ce7e9c48740eca827c - React-RCTBlob: 13311e554c1a367de063c10ee7c5e6573b2dd1d6 - React-RCTFabric: 007b1a98201cc49b5bc6e1417d7fe3f6fc6e2b78 - React-RCTImage: 1b1f914bcc12187c49ba5d949dac38c2eb9f5cc8 - React-RCTLinking: 4ac7c42beb65e36fba0376f3498f3cd8dd0be7fa - React-RCTNetwork: 938902773add4381e84426a7aa17a2414f5f94f7 - React-RCTSettings: e848f1ba17a7a18479cf5a31d28145f567da8223 - React-RCTText: 7e98fafdde7d29e888b80f0b35544e0cb07913cf - React-RCTVibration: cd7d80affd97dc7afa62f9acd491419558b64b78 + React-RCTAnimation: d8c82deebebe3aaf7a843affac1b57cb2dc073d4 + React-RCTAppDelegate: 1774aa421a29a41a704ecaf789811ef73c4634b6 + React-RCTBlob: 70a58c11a6a3500d1a12f2e51ca4f6c99babcff8 + React-RCTFabric: 731cda82aed592aacce2d32ead69d78cde5d9274 + React-RCTImage: 5e9d655ba6a790c31e3176016f9b47fd0978fbf0 + React-RCTLinking: 2a48338252805091f7521eaf92687206401bdf2a + React-RCTNetwork: 0c1282b377257f6b1c81934f72d8a1d0c010e4c3 + React-RCTSettings: f757b679a74e5962be64ea08d7865a7debd67b40 + React-RCTText: e7d20c490b407d3b4a2daa48db4bcd8ec1032af2 + React-RCTVibration: 8228e37144ca3122a91f1de16ba8e0707159cfec React-rendererconsistency: b4917053ecbaa91469c67a4319701c9dc0d40be6 - React-rendererdebug: aa181c36dd6cf5b35511d1ed875d6638fd38f0ec + React-rendererdebug: 81becbc8852b38d9b1b68672aa504556481330d5 React-rncore: 120d21715c9b4ba8f798bffe986cb769b988dd74 - React-RuntimeApple: d033becbbd1eba6f9f6e3af6f1893030ce203edd - React-RuntimeCore: 38af280bb678e66ba000a3c3d42920b2a138eebb + React-RuntimeApple: 52ed0e9e84a7c2607a901149fb13599a3c057655 + React-RuntimeCore: ca6189d2e53d86db826e2673fe8af6571b8be157 React-runtimeexecutor: 877596f82f5632d073e121cba2d2084b76a76899 - React-RuntimeHermes: 37aad735ff21ca6de2d8450a96de1afe9f86c385 - React-runtimescheduler: 8ec34cc885281a34696ea16c4fd86892d631f38d + React-RuntimeHermes: 3b752dc5d8a1661c9d1687391d6d96acfa385549 + React-runtimescheduler: 8321bb09175ace2a4f0b3e3834637eb85bf42ebe React-timing: 331cbf9f2668c67faddfd2e46bb7f41cbd9320b9 - React-utils: ed818f19ab445000d6b5c4efa9d462449326cc9f - ReactCodegen: f853a20cc9125c5521c8766b4b49375fec20648b - ReactCommon: 300d8d9c5cb1a6cd79a67cf5d8f91e4d477195f9 - ReactNativePayments: 47056cd9f1dc32dbdd716974de5df700c44f12db - rive-react-native: 9c7100fec9480d23dc69b4f4fb321de6bb742c4a + React-utils: 54df9ada708578c8ad40d92895d6fed03e0e8a9e + ReactCodegen: 21a52ccddc6479448fc91903a437dd23ddc7366c + ReactCommon: bfd3600989d79bc3acbe7704161b171a1480b9fd + ReactNativePayments: db62ee22a825e9e9c3e19c276d8d020881dd0630 + rive-react-native: 07d6904602f141ebf21b432c2d0d5fa1dab3768f RiveRuntime: 56c2133fa5c5c570dd93818d8c2772ae6f126806 - RNCAsyncStorage: 9b86b860b6253f5eacf34af7d740037091358dab - RNCCheckbox: 33b44487ca8008394ce658cc32b26eab04f426ef - RNCClipboard: f1fe5a8005c651c204e60b43cf0cd67e2244ab70 - RNCMaskedView: b3aee2f4fa81807ec035be51c057aa2eed166173 - RNDateTimePicker: 96559f666636a8326e862024103eab77a6950625 - RNDefaultPreference: 36fe31684af1f2d14e0664aa9a816d0ec6149cc1 - RNDeviceInfo: e5219d380b51ddb7f97e650ab99a518476b90203 - RNFBApp: 0e66b9f844efdf2ac3fa2b30e64c9db41a263b3d - RNFBMessaging: 70b12c9f22c7c9d5011ac9b12ac2bafbfb081267 - RNFS: 89de7d7f4c0f6bafa05343c578f61118c8282ed8 - RNGestureHandler: 9c8bf98209e658e1ceb13026f176e4ede1f24491 - RNI18n: 11ec5086508673ef71b5b567da3e8bcca8a926e1 - RNInAppBrowser: 6d3eb68d471b9834335c664704719b8be1bfdb20 - RNKeychain: 6ee77734c4a38bc95accc34dce4d6e40553c06a4 - RNNotifee: 5165d37aaf980031837be3caece2eae5a6d73ae8 - RNOS: d07e5090b5060c6f2b83116d740a32cfdb33afe3 - RNPermissions: 77ecf18a1aed5621334279a197252be4241a36fa - RNReanimated: 1940e2891efbdf495b4e2096c7e1394729dbbe64 - RNScreens: 547f6ce145ca702d364dfef0b90fc1dfa29a7e4c - RNSensors: 4690be00931bc60be7c7bd457701edefaff965e3 - RNSentry: ac378c5d235ecca7b574e09d9b293bb54217702d - RNShare: d03cdc71e750246a48b81dcd62bd792bf57a758e - RNSVG: 3a1cce2e940268a7d3554e3cf2bbd2195871f4fe - RNVectorIcons: 3bf5f38dcb1aaf587c4101e9f3fcad5c8f5a88b2 + RNCAsyncStorage: ac02697867ba18d2cfd761ebb144417fe65b210e + RNCCheckbox: 471ebdc33884c084f362615c1ef3507496cc07f1 + RNCClipboard: 34c6e8d4c8dc3dccc587256313c543a31ecf3500 + RNCMaskedView: 7da5771779ec8f3514482f61288bbd644af26600 + RNDateTimePicker: 45ddaccbb28888b70414579713ef44d7278f1b09 + RNDefaultPreference: 2f8d6d54230edbd78708ada8d63bb275e5a8415b + RNDeviceInfo: 1e3f62b9ec32f7754fac60bd06b8f8a27124e7f0 + RNFBApp: 5f87753a8d8b37d229adf85cd0ff37709ffdf008 + RNFBMessaging: 3fa1114c0868dd21f20dfe186adf42297ea316b1 + RNFlashList: 11f5b15e49d5c92299682face72bb840ce97b84a + RNFS: 4ac0f0ea233904cb798630b3c077808c06931688 + RNGestureHandler: 3e17c0c9ceb401041b0e64c8e4c8a057da978a9d + RNI18n: e2f7e76389fcc6e84f2c8733ea89b92502351fd8 + RNInAppBrowser: e36d6935517101ccba0e875bac8ad7b0cb655364 + RNKeychain: ac53793d4a52be6286c1da065b2fa2ce20daa522 + RNNotifee: 2b7df6e32a9cc24b9af6b410fa7db1cd2f411d6d + RNOS: 6f2f9a70895bbbfbdad7196abd952e7b01d45027 + RNPermissions: 46263b9cf749079419135fa9d995c169e72e6f1c + RNReanimated: 5ed2b66c32cb3d398e4c12591b3053594fe2fcb9 + RNScreens: 2856a2abe759a5a56946874f76372c9f033af19a + RNSensors: c363d486c879e181905dea84a2535e49af1c2d25 + RNSentry: abe13a83efe1ab0bfa18bf7d21400feb92d42336 + RNShare: f116bbb04f310c665ca483d0bd1e88cf59b3b334 + RNSVG: 81d52481cde97ce0dcc81a55b0310723817088d0 + RNVectorIcons: eacd321244b1bd2a70d69dcb54cb875c69da1d3b SDWebImage: 8a6b7b160b4d710e2a22b6900e25301075c34cb3 - SDWebImageAVIFCoder: 00310d246aab3232ce77f1d8f0076f8c4b021d90 + SDWebImageAVIFCoder: afe194a084e851f70228e4be35ef651df0fc5c57 SDWebImageSVGCoder: 15a300a97ec1c8ac958f009c02220ac0402e936c - segment-analytics-react-native: 6f98edf18246782ee7428c5380c6519a3d2acf5e - Sentry: 2cbbe3592f30050c60e916c63c7f5a2fa584005e + segment-analytics-react-native: d57ed4971cbb995706babf29215ebdbf242ecdab + Sentry: 1ca8405451040482877dcd344dfa3ef80b646631 SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748 - sovran-react-native: e4721a564ee6ef5b5a0d901bc677018cf371ea01 - VisionCamera: f56eaedde0d3fa095143b78374d29e89e71735f9 - Yoga: feb4910aba9742cfedc059e2b2902e22ffe9954a + sovran-react-native: 791f2f726b4d57ece59676eda58d6da9dc95ad4e + VisionCamera: b5c2b3c45e641102902a5194af11dc532805221e + Yoga: 40f19fff64dce86773bf8b602c7070796c007970 PODFILE CHECKSUM: 3debf6fbed3b6fecab16001c02c028737e11786c -COCOAPODS: 1.16.2 +COCOAPODS: 1.15.2 diff --git a/package.json b/package.json index 65277c6c33a5..a724e591be15 100644 --- a/package.json +++ b/package.json @@ -295,16 +295,16 @@ "@nktkas/hyperliquid": "^0.27.1", "@noble/curves": "1.9.6", "@notifee/react-native": "^9.0.0", - "@react-native-async-storage/async-storage": "^1.23.1", + "@react-native-async-storage/async-storage": "1.23.1", "@react-native-clipboard/clipboard": "^1.16.1", "@react-native-community/checkbox": "^0.5.20", "@react-native-community/cli": "15.0.1", "@react-native-community/cli-platform-android": "15.0.1", "@react-native-community/cli-platform-ios": "15.0.1", "@react-native-community/cli-server-api": "^17.0.0", - "@react-native-community/datetimepicker": "^8.3.0", + "@react-native-community/datetimepicker": "8.2.0", "@react-native-community/netinfo": "^11.4.1", - "@react-native-community/slider": "^4.4.3", + "@react-native-community/slider": "4.5.5", "@react-native-cookies/cookies": "^6.2.1", "@react-native-firebase/app": "^20.5.0", "@react-native-firebase/messaging": "^20.5.0", @@ -323,8 +323,8 @@ "@sentry/browser": "~8.54.0", "@sentry/core": "~8.54.0", "@sentry/react": "~8.54.0", - "@sentry/react-native": "~6.15.0", - "@shopify/flash-list": "2.0.3", + "@sentry/react-native": "~6.10.0", + "@shopify/flash-list": "1.7.3", "@solana/addresses": "2.0.0", "@tommasini/react-native-scrollable-tab-view": "^1.1.1", "@tradle/react-native-http": "2.0.1", @@ -366,9 +366,10 @@ "expo-apple-authentication": "~7.1.3", "expo-asset": "~11.0.5", "expo-auth-session": "~6.0.3", - "expo-build-properties": "~0.13.2", + "expo-build-properties": "~0.13.3", "expo-dev-client": "~5.0.18", "expo-file-system": "~18.0.7", + "expo-font": "~13.0.4", "expo-haptics": "~14.0.1", "expo-image": "~2.0.7", "expo-screen-orientation": "~8.0.4", @@ -382,7 +383,7 @@ "humanize-duration": "^3.27.2", "is-url": "^1.2.4", "lodash": "^4.17.21", - "lottie-react-native": "6.7.2", + "lottie-react-native": "7.1.0", "luxon": "^3.5.0", "mockttp": "^3.15.2", "multihashes": "0.4.14", @@ -417,7 +418,7 @@ "react-native-fade-in-image": "1.4.1", "react-native-fast-crypto": "^2.2.0", "react-native-fs": "^2.20.0", - "react-native-gesture-handler": "^2.25.0", + "react-native-gesture-handler": "~2.20.2", "react-native-get-random-values": "^1.8.0", "react-native-gzip": "^1.1.0", "react-native-i18n": "2.0.15", @@ -433,30 +434,30 @@ "react-native-modal": "^14.0.0-rc.1", "react-native-nitro-modules": "^0.29.6", "react-native-os": "^1.2.6", - "react-native-pager-view": "^6.7.0", + "react-native-pager-view": "6.5.1", "react-native-permissions": "^3.7.2", "react-native-progress": "3.5.0", "react-native-qrcode-svg": "5.1.2", "react-native-quick-base64": "^2.2.0", "react-native-quick-crypto": "^0.7.15", "react-native-randombytes": "^3.5.3", - "react-native-reanimated": "^3.17.2", + "react-native-reanimated": "~3.16.1", "react-native-release-profiler": "^0.4.0", "react-native-render-html": "^6.3.4", - "react-native-safe-area-context": "^5.4.0", - "react-native-screens": "3.37.0", + "react-native-safe-area-context": "4.12.0", + "react-native-screens": "~4.4.0", "react-native-sensors": "5.3.0", "react-native-share": "7.3.7", "react-native-size-matters": "0.4.0", "react-native-skeleton-placeholder": "^5.0.0", "react-native-step-indicator": "^1.0.3", - "react-native-svg": "^15.11.1", + "react-native-svg": "15.8.0", "react-native-svg-charts": "^5.4.0", "react-native-swipe-gestures": "1.0.3", "react-native-url-polyfill": "^1.3.0", "react-native-vector-icons": "10.2.0", "react-native-video": "^6.10.1", - "react-native-view-shot": "^3.1.2", + "react-native-view-shot": "~4.0.3", "react-native-vision-camera": "^4.6.4", "react-redux": "^8.1.3", "reactotron-react-native": "^5.1.14", diff --git a/patches/react-native-svg+15.11.2.patch b/patches/react-native-svg+15.11.2.patch deleted file mode 100644 index e461371d9bd3..000000000000 --- a/patches/react-native-svg+15.11.2.patch +++ /dev/null @@ -1,38 +0,0 @@ -diff --git a/node_modules/react-native-svg/src/utils/fetchData.ts b/node_modules/react-native-svg/src/utils/fetchData.ts -index d141be3..4da0fba 100644 ---- a/node_modules/react-native-svg/src/utils/fetchData.ts -+++ b/node_modules/react-native-svg/src/utils/fetchData.ts -@@ -34,6 +34,16 @@ function dataUriToXml(uri: string): string | null { - - async function fetchUriData(uri: string) { - const response = await fetch(uri); -+ -+ // This is a temporary fix for dapps with bad metadata icon urls -+ // Remove this once we replace WebsiteIcon with AvatarFavicon component -+ const excludeList = ['text/html', '']; -+ const contentType = response.headers.get('content-type') || ''; -+ -+ if (excludeList.includes(contentType)) { -+ throw new Error(`Fetching ${uri} resulted in invalid content-type ${contentType}`); -+ } -+ - if (response.ok || (response.status === 0 && uri.startsWith('file://'))) { - return await response.text(); - } -diff --git a/node_modules/react-native-svg/src/xml.tsx b/node_modules/react-native-svg/src/xml.tsx -index edfaa9b..4f1ce1d 100644 ---- a/node_modules/react-native-svg/src/xml.tsx -+++ b/node_modules/react-native-svg/src/xml.tsx -@@ -257,7 +257,11 @@ const quotemarks = /['"]/; - - export type Middleware = (ast: XmlAST) => XmlAST; - --export function parse(source: string, middleware?: Middleware): JsxAST | null { -+export function parse(sourceUnmodified: string, middleware?: Middleware): JsxAST | null { -+ // Avoid crashes on malformed SVGs from URIs that use the HTML entity " instead of " -+ // react-native-svg team acknowledges this parser needs more work to parse HTML entites correctly -+ // https://github.com/software-mansion/react-native-svg/pull/2426#issuecomment-2306692764 -+ const source = sourceUnmodified.replaceAll('"','"'); - const length = source.length; - let currentElement: XmlAST | null = null; - let state = metadata; diff --git a/patches/react-native-view-shot+3.8.0.patch b/patches/react-native-view-shot+3.8.0.patch deleted file mode 100644 index 9ddf60492104..000000000000 --- a/patches/react-native-view-shot+3.8.0.patch +++ /dev/null @@ -1,181 +0,0 @@ -diff --git a/node_modules/react-native-view-shot/android/src/main/java/fr/greweb/reactnativeviewshot/RNViewShotModule.java b/node_modules/react-native-view-shot/android/src/main/java/fr/greweb/reactnativeviewshot/RNViewShotModule.java -index 9faf7da..d5eac90 100644 ---- a/node_modules/react-native-view-shot/android/src/main/java/fr/greweb/reactnativeviewshot/RNViewShotModule.java -+++ b/node_modules/react-native-view-shot/android/src/main/java/fr/greweb/reactnativeviewshot/RNViewShotModule.java -@@ -1,11 +1,15 @@ - - package fr.greweb.reactnativeviewshot; - -+import static com.facebook.react.uimanager.common.UIManagerType.FABRIC; -+ - import android.app.Activity; - import android.content.Context; - import android.net.Uri; - import android.os.AsyncTask; - import androidx.annotation.NonNull; -+import androidx.annotation.OptIn; -+ - import android.util.DisplayMetrics; - import android.util.Log; - -@@ -16,7 +20,9 @@ import com.facebook.react.bridge.ReactContext; - import com.facebook.react.bridge.ReactContextBaseJavaModule; - import com.facebook.react.bridge.ReactMethod; - import com.facebook.react.bridge.ReadableMap; --import com.facebook.react.uimanager.UIManagerModule; -+import com.facebook.react.common.annotations.UnstableReactNativeAPI; -+import com.facebook.react.fabric.FabricUIManager; -+import com.facebook.react.uimanager.UIManagerHelper; - - import java.io.File; - import java.io.FilenameFilter; -@@ -71,6 +77,7 @@ public class RNViewShotModule extends ReactContextBaseJavaModule { - } - - @ReactMethod -+ @OptIn(markerClass = UnstableReactNativeAPI.class) - public void captureRef(int tag, ReadableMap options, Promise promise) { - final ReactApplicationContext context = getReactApplicationContext(); - final DisplayMetrics dm = context.getResources().getDisplayMetrics(); -@@ -99,7 +106,11 @@ public class RNViewShotModule extends ReactContextBaseJavaModule { - } - - final Activity activity = getCurrentActivity(); -- final UIManagerModule uiManager = this.reactContext.getNativeModule(UIManagerModule.class); -+ final FabricUIManager uiManager = (FabricUIManager) UIManagerHelper.getUIManager(this.reactContext, FABRIC); -+ -+ if (uiManager == null) { -+ throw new Exception("Doesn't find valid ui manager"); -+ } - - uiManager.addUIBlock(new ViewShot( - tag, extension, imageFormat, quality, -diff --git a/node_modules/react-native-view-shot/android/src/main/java/fr/greweb/reactnativeviewshot/ViewShot.java b/node_modules/react-native-view-shot/android/src/main/java/fr/greweb/reactnativeviewshot/ViewShot.java -index 20e29e2..2832856 100644 ---- a/node_modules/react-native-view-shot/android/src/main/java/fr/greweb/reactnativeviewshot/ViewShot.java -+++ b/node_modules/react-native-view-shot/android/src/main/java/fr/greweb/reactnativeviewshot/ViewShot.java -@@ -26,8 +26,9 @@ import android.widget.ScrollView; - - import com.facebook.react.bridge.Promise; - import com.facebook.react.bridge.ReactApplicationContext; --import com.facebook.react.uimanager.NativeViewHierarchyManager; --import com.facebook.react.uimanager.UIBlock; -+import com.facebook.react.common.annotations.UnstableReactNativeAPI; -+import com.facebook.react.fabric.interop.UIBlock; -+import com.facebook.react.fabric.interop.UIBlockViewResolver; - - import java.io.ByteArrayOutputStream; - import java.io.File; -@@ -46,7 +47,6 @@ import java.util.Set; - import java.util.WeakHashMap; - import java.util.concurrent.CountDownLatch; - import java.util.concurrent.Executor; --import java.util.concurrent.Executors; - import java.util.concurrent.TimeUnit; - import java.util.zip.Deflater; - -@@ -54,7 +54,7 @@ import javax.annotation.Nullable; - - import static android.view.View.VISIBLE; - --/** -+@UnstableReactNativeAPI /** - * Snapshot utility class allow to screenshot a view. - */ - public class ViewShot implements UIBlock { -@@ -80,6 +80,47 @@ public class ViewShot implements UIBlock { - */ - private static final int SURFACE_VIEW_READ_PIXELS_TIMEOUT = 5; - -+ @Override -+ public void execute(@NonNull UIBlockViewResolver uiBlockViewResolver) { -+ executor.execute(new Runnable () { -+ @Override -+ public void run() { -+ try { -+ final View view; -+ -+ if (tag == -1) { -+ view = currentActivity.getWindow().getDecorView().findViewById(android.R.id.content); -+ } else { -+ view = uiBlockViewResolver.resolveView(tag); -+ } -+ -+ if (view == null) { -+ Log.e(TAG, "No view found with reactTag: " + tag, new AssertionError()); -+ promise.reject(ERROR_UNABLE_TO_SNAPSHOT, "No view found with reactTag: " + tag); -+ return; -+ } -+ -+ final ReusableByteArrayOutputStream stream = new ReusableByteArrayOutputStream(outputBuffer); -+ stream.setSize(proposeSize(view)); -+ outputBuffer = stream.innerBuffer(); -+ -+ if (Results.TEMP_FILE.equals(result) && Formats.RAW == format) { -+ saveToRawFileOnDevice(view); -+ } else if (Results.TEMP_FILE.equals(result) && Formats.RAW != format) { -+ saveToTempFileOnDevice(view); -+ } else if (Results.BASE_64.equals(result) || Results.ZIP_BASE_64.equals(result)) { -+ saveToBase64String(view); -+ } else if (Results.DATA_URI.equals(result)) { -+ saveToDataUriString(view); -+ } -+ } catch (final Throwable ex) { -+ Log.e(TAG, "Failed to capture view snapshot", ex); -+ promise.reject(ERROR_UNABLE_TO_SNAPSHOT, "Failed to capture view snapshot"); -+ } -+ } -+ }); -+ } -+ - @SuppressWarnings("WeakerAccess") - @IntDef({Formats.JPEG, Formats.PNG, Formats.WEBP, Formats.RAW}) - public @interface Formats { -@@ -180,47 +221,6 @@ public class ViewShot implements UIBlock { - } - //endregion - -- //region Overrides -- @Override -- public void execute(final NativeViewHierarchyManager nativeViewHierarchyManager) { -- executor.execute(new Runnable () { -- @Override -- public void run() { -- try { -- final View view; -- -- if (tag == -1) { -- view = currentActivity.getWindow().getDecorView().findViewById(android.R.id.content); -- } else { -- view = nativeViewHierarchyManager.resolveView(tag); -- } -- -- if (view == null) { -- Log.e(TAG, "No view found with reactTag: " + tag, new AssertionError()); -- promise.reject(ERROR_UNABLE_TO_SNAPSHOT, "No view found with reactTag: " + tag); -- return; -- } -- -- final ReusableByteArrayOutputStream stream = new ReusableByteArrayOutputStream(outputBuffer); -- stream.setSize(proposeSize(view)); -- outputBuffer = stream.innerBuffer(); -- -- if (Results.TEMP_FILE.equals(result) && Formats.RAW == format) { -- saveToRawFileOnDevice(view); -- } else if (Results.TEMP_FILE.equals(result) && Formats.RAW != format) { -- saveToTempFileOnDevice(view); -- } else if (Results.BASE_64.equals(result) || Results.ZIP_BASE_64.equals(result)) { -- saveToBase64String(view); -- } else if (Results.DATA_URI.equals(result)) { -- saveToDataUriString(view); -- } -- } catch (final Throwable ex) { -- Log.e(TAG, "Failed to capture view snapshot", ex); -- promise.reject(ERROR_UNABLE_TO_SNAPSHOT, "Failed to capture view snapshot"); -- } -- } -- }); -- } - //endregion - - //region Implementation diff --git a/react-native.config.js b/react-native.config.js index 1a35519d4ae9..57cae712063e 100644 --- a/react-native.config.js +++ b/react-native.config.js @@ -8,5 +8,5 @@ module.exports = { }, }, }, - assets: ['./app/fonts/'], + // Note: Font assets now managed by expo-font plugin instead of React Native assets }; diff --git a/yarn.lock b/yarn.lock index 5bdebfff865f..9efb74c9c166 100644 --- a/yarn.lock +++ b/yarn.lock @@ -11842,7 +11842,18 @@ __metadata: languageName: node linkType: hard -"@react-native-async-storage/async-storage@npm:^1.17.7, @react-native-async-storage/async-storage@npm:^1.23.1": +"@react-native-async-storage/async-storage@npm:1.23.1": + version: 1.23.1 + resolution: "@react-native-async-storage/async-storage@npm:1.23.1" + dependencies: + merge-options: "npm:^3.0.4" + peerDependencies: + react-native: ^0.0.0-0 || >=0.60 <1.0 + checksum: 10/9d0acc7edb0ba9ee414d6e62c656e5d571c9d9615e7e9f4748865b965178998f2e73786b8050387ada00ddb6faaca97b5cf2e010ceaeebe91571991364a0f515 + languageName: node + linkType: hard + +"@react-native-async-storage/async-storage@npm:^1.17.7": version: 1.24.0 resolution: "@react-native-async-storage/async-storage@npm:1.24.0" dependencies: @@ -12098,9 +12109,9 @@ __metadata: languageName: node linkType: hard -"@react-native-community/datetimepicker@npm:^8.3.0": - version: 8.3.0 - resolution: "@react-native-community/datetimepicker@npm:8.3.0" +"@react-native-community/datetimepicker@npm:8.2.0": + version: 8.2.0 + resolution: "@react-native-community/datetimepicker@npm:8.2.0" dependencies: invariant: "npm:^2.2.4" peerDependencies: @@ -12113,7 +12124,7 @@ __metadata: optional: true react-native-windows: optional: true - checksum: 10/69adaaadbd8b57d1c049d0ca92dddad62b5c8dfba50e4660303c30746d39e9e976d6d61f59f001d5df15f25832dc740225fe394c667bd3a76dc42b66efc061d9 + checksum: 10/57b51a9423d3ba49029e2d9905db040f7091285c51578eef5273baf3dd2e22bde6d1a17962a8dc5e0ac588dccff0ab36c9774f9da76363fca458ec42d30c4d66 languageName: node linkType: hard @@ -12126,10 +12137,10 @@ __metadata: languageName: node linkType: hard -"@react-native-community/slider@npm:^4.4.3": - version: 4.5.6 - resolution: "@react-native-community/slider@npm:4.5.6" - checksum: 10/9c892ccdce9971e6cf69a91e3e8caab3fe668d6944f1a7195de228d5433c7fab2b15f6c945fd90464fc7b15b557ddcbf4d6b522b4b7d1a19f28ee2b4d6b6af93 +"@react-native-community/slider@npm:4.5.5": + version: 4.5.5 + resolution: "@react-native-community/slider@npm:4.5.5" + checksum: 10/8c49f7e0b7d7c37b91c936805106e88ee31011dc210d5c237c07e35d330870536b560b48e6212195fffc2e2706b16c31715b6cebbb2cc33127702bff9850f134 languageName: node linkType: hard @@ -13010,10 +13021,10 @@ __metadata: languageName: node linkType: hard -"@sentry/babel-plugin-component-annotate@npm:3.5.0": - version: 3.5.0 - resolution: "@sentry/babel-plugin-component-annotate@npm:3.5.0" - checksum: 10/da8b356a00445b6dd711b59fbfa5b9e2f808dcf1e364d6a37b1d4931ce53e87734b1178cee14af59f9e36ffa1e9a6eb8081caa455c4e803800f10aad80b5bb58 +"@sentry/babel-plugin-component-annotate@npm:3.2.2": + version: 3.2.2 + resolution: "@sentry/babel-plugin-component-annotate@npm:3.2.2" + checksum: 10/37f0e429a80f70a38dc5fa46adeb8ae9b4385ddb5c357a381541ac0ef6a297fdccb608a3cc757513cc68bd5571f4e0bfb06f5d78baa07e5b074b7ba7012e984f languageName: node linkType: hard @@ -13030,74 +13041,66 @@ __metadata: languageName: node linkType: hard -"@sentry/cli-darwin@npm:2.46.0": - version: 2.46.0 - resolution: "@sentry/cli-darwin@npm:2.46.0" +"@sentry/cli-darwin@npm:2.42.4": + version: 2.42.4 + resolution: "@sentry/cli-darwin@npm:2.42.4" conditions: os=darwin languageName: node linkType: hard -"@sentry/cli-linux-arm64@npm:2.46.0": - version: 2.46.0 - resolution: "@sentry/cli-linux-arm64@npm:2.46.0" - conditions: (os=linux | os=freebsd | os=android) & cpu=arm64 +"@sentry/cli-linux-arm64@npm:2.42.4": + version: 2.42.4 + resolution: "@sentry/cli-linux-arm64@npm:2.42.4" + conditions: (os=linux | os=freebsd) & cpu=arm64 languageName: node linkType: hard -"@sentry/cli-linux-arm@npm:2.46.0": - version: 2.46.0 - resolution: "@sentry/cli-linux-arm@npm:2.46.0" - conditions: (os=linux | os=freebsd | os=android) & cpu=arm +"@sentry/cli-linux-arm@npm:2.42.4": + version: 2.42.4 + resolution: "@sentry/cli-linux-arm@npm:2.42.4" + conditions: (os=linux | os=freebsd) & cpu=arm languageName: node linkType: hard -"@sentry/cli-linux-i686@npm:2.46.0": - version: 2.46.0 - resolution: "@sentry/cli-linux-i686@npm:2.46.0" - conditions: (os=linux | os=freebsd | os=android) & (cpu=x86 | cpu=ia32) +"@sentry/cli-linux-i686@npm:2.42.4": + version: 2.42.4 + resolution: "@sentry/cli-linux-i686@npm:2.42.4" + conditions: (os=linux | os=freebsd) & (cpu=x86 | cpu=ia32) languageName: node linkType: hard -"@sentry/cli-linux-x64@npm:2.46.0": - version: 2.46.0 - resolution: "@sentry/cli-linux-x64@npm:2.46.0" - conditions: (os=linux | os=freebsd | os=android) & cpu=x64 +"@sentry/cli-linux-x64@npm:2.42.4": + version: 2.42.4 + resolution: "@sentry/cli-linux-x64@npm:2.42.4" + conditions: (os=linux | os=freebsd) & cpu=x64 languageName: node linkType: hard -"@sentry/cli-win32-arm64@npm:2.46.0": - version: 2.46.0 - resolution: "@sentry/cli-win32-arm64@npm:2.46.0" - conditions: os=win32 & cpu=arm64 - languageName: node - linkType: hard - -"@sentry/cli-win32-i686@npm:2.46.0": - version: 2.46.0 - resolution: "@sentry/cli-win32-i686@npm:2.46.0" +"@sentry/cli-win32-i686@npm:2.42.4": + version: 2.42.4 + resolution: "@sentry/cli-win32-i686@npm:2.42.4" conditions: os=win32 & (cpu=x86 | cpu=ia32) languageName: node linkType: hard -"@sentry/cli-win32-x64@npm:2.46.0": - version: 2.46.0 - resolution: "@sentry/cli-win32-x64@npm:2.46.0" +"@sentry/cli-win32-x64@npm:2.42.4": + version: 2.42.4 + resolution: "@sentry/cli-win32-x64@npm:2.42.4" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@sentry/cli@npm:2.46.0": - version: 2.46.0 - resolution: "@sentry/cli@npm:2.46.0" +"@sentry/cli@npm:2.42.4": + version: 2.42.4 + resolution: "@sentry/cli@npm:2.42.4" dependencies: - "@sentry/cli-darwin": "npm:2.46.0" - "@sentry/cli-linux-arm": "npm:2.46.0" - "@sentry/cli-linux-arm64": "npm:2.46.0" - "@sentry/cli-linux-i686": "npm:2.46.0" - "@sentry/cli-linux-x64": "npm:2.46.0" - "@sentry/cli-win32-arm64": "npm:2.46.0" - "@sentry/cli-win32-i686": "npm:2.46.0" - "@sentry/cli-win32-x64": "npm:2.46.0" + "@sentry/cli-darwin": "npm:2.42.4" + "@sentry/cli-linux-arm": "npm:2.42.4" + "@sentry/cli-linux-arm64": "npm:2.42.4" + "@sentry/cli-linux-i686": "npm:2.42.4" + "@sentry/cli-linux-x64": "npm:2.42.4" + "@sentry/cli-win32-i686": "npm:2.42.4" + "@sentry/cli-win32-x64": "npm:2.42.4" https-proxy-agent: "npm:^5.0.0" node-fetch: "npm:^2.6.7" progress: "npm:^2.0.3" @@ -13114,15 +13117,13 @@ __metadata: optional: true "@sentry/cli-linux-x64": optional: true - "@sentry/cli-win32-arm64": - optional: true "@sentry/cli-win32-i686": optional: true "@sentry/cli-win32-x64": optional: true bin: sentry-cli: bin/sentry-cli - checksum: 10/b3d9f7f8cdd20d8ee43987dd0d275167f698436a4ec6779d8b42a5a15050d5f55cc28995576bc6fbabcb27b373ea61dc0beec6221a98dd10ecfd57e71b1e9f63 + checksum: 10/9df9c729626383bfc18476dbeec329f91f3b9555a0decdefbf165f07860ec5ededfcc71a4c6ca59b11a5ee7c6323d0dd31026e2875b6cb28896db0dafc82ba8a languageName: node linkType: hard @@ -13140,13 +13141,13 @@ __metadata: languageName: node linkType: hard -"@sentry/react-native@npm:~6.15.0": - version: 6.15.1 - resolution: "@sentry/react-native@npm:6.15.1" +"@sentry/react-native@npm:~6.10.0": + version: 6.10.0 + resolution: "@sentry/react-native@npm:6.10.0" dependencies: - "@sentry/babel-plugin-component-annotate": "npm:3.5.0" + "@sentry/babel-plugin-component-annotate": "npm:3.2.2" "@sentry/browser": "npm:8.54.0" - "@sentry/cli": "npm:2.46.0" + "@sentry/cli": "npm:2.42.4" "@sentry/core": "npm:8.54.0" "@sentry/react": "npm:8.54.0" "@sentry/types": "npm:8.54.0" @@ -13160,7 +13161,7 @@ __metadata: optional: true bin: sentry-expo-upload-sourcemaps: scripts/expo-upload-sourcemaps.js - checksum: 10/133ba9b9705b9f4c43f97d55fc614f48f765c2057ac69f2213c6096d44cef3d353a21abca19a7c0ef56eaa3bf6f67d57931e089a2563fc671c3d0d4515c9bf99 + checksum: 10/958ff6278cf0d7a8e7eb8cea9c766d15615b9fe184537c1fd55e68c6557885bbf873a7095749b754c83447f2271a88761a7b25e2a9a7810c33f1f8bb1e3cd336 languageName: node linkType: hard @@ -13195,16 +13196,17 @@ __metadata: languageName: node linkType: hard -"@shopify/flash-list@npm:2.0.3": - version: 2.0.3 - resolution: "@shopify/flash-list@npm:2.0.3" +"@shopify/flash-list@npm:1.7.3": + version: 1.7.3 + resolution: "@shopify/flash-list@npm:1.7.3" dependencies: + recyclerlistview: "npm:4.2.1" tslib: "npm:2.8.1" peerDependencies: "@babel/runtime": "*" react: "*" react-native: "*" - checksum: 10/5078d3779cfba5f286c73e1802ea78ecc337c3ae847b32f74af0de3bb38b2b96a759b1a0e04a5fd328387b31a57a436468bd022daec9af246ca2615d8ff3e44a + checksum: 10/bd1bc39afcc753b8018cfe1a7bc1874485c191b355155fe127682a90651f6691b11daf6db0fd398fa436cb24a0bfbb83989d3bf1d90063b5a620fce2ed791cb0 languageName: node linkType: hard @@ -29196,15 +29198,15 @@ __metadata: languageName: node linkType: hard -"expo-build-properties@npm:^0.13.1, expo-build-properties@npm:~0.13.2": - version: 0.13.2 - resolution: "expo-build-properties@npm:0.13.2" +"expo-build-properties@npm:^0.13.1, expo-build-properties@npm:~0.13.3": + version: 0.13.3 + resolution: "expo-build-properties@npm:0.13.3" dependencies: ajv: "npm:^8.11.0" semver: "npm:^7.6.0" peerDependencies: expo: "*" - checksum: 10/88a2b0f491112398314502cc51172d4695d62ed9998fa96d8630450a5451f5f9779e0737c997175502ab16a3eb0194efb1cac44be44d5bfa2025054e4e4ce1c7 + checksum: 10/c452af66ec2f7b9e31099652451f9caca48812ec1932b2c7c48f5ae57f11b6bee957cbca25e5dd4e08a5dc157ebf4ed1ea36fd298090a7792ae769e3e65f63e5 languageName: node linkType: hard @@ -35277,7 +35279,7 @@ __metadata: languageName: node linkType: hard -"lodash.debounce@npm:^4.0.8": +"lodash.debounce@npm:4.0.8, lodash.debounce@npm:^4.0.8": version: 4.0.8 resolution: "lodash.debounce@npm:4.0.8" checksum: 10/cd0b2819786e6e80cb9f5cda26b1a8fc073daaf04e48d4cb462fa4663ec9adb3a5387aa22d7129e48eed1afa05b482e2a6b79bfc99b86886364449500cbb00fd @@ -35527,23 +35529,20 @@ __metadata: languageName: node linkType: hard -"lottie-react-native@npm:6.7.2": - version: 6.7.2 - resolution: "lottie-react-native@npm:6.7.2" +"lottie-react-native@npm:7.1.0": + version: 7.1.0 + resolution: "lottie-react-native@npm:7.1.0" peerDependencies: - "@dotlottie/react-player": ^1.6.1 - "@lottiefiles/react-lottie-player": ^3.5.3 + "@lottiefiles/dotlottie-react": ^0.6.5 react: "*" react-native: ">=0.46" react-native-windows: ">=0.63.x" peerDependenciesMeta: - "@dotlottie/react-player": - optional: true - "@lottiefiles/react-lottie-player": + "@lottiefiles/dotlottie-react": optional: true react-native-windows: optional: true - checksum: 10/51a39a65c2b35fdb744cd1fb61f4a2c62738a0415442c66bbef718b788d341bcf0af9e5bc2baffe9ac0d5f7dac345c5a420c7c463a3bffc97b7375110c2424cc + checksum: 10/ea83db89ccce8aa3752777b1f66119b50f8cbb30b8fe75881ad3106c48a52f4093b404f59de70401c10ea8b9537680cb5e2c2109324ab3ce97121821282e63b8 languageName: node linkType: hard @@ -36057,16 +36056,16 @@ __metadata: "@open-rpc/mock-server": "npm:^1.7.5" "@open-rpc/schema-utils-js": "npm:^1.16.2" "@open-rpc/test-coverage": "npm:^2.2.2" - "@react-native-async-storage/async-storage": "npm:^1.23.1" + "@react-native-async-storage/async-storage": "npm:1.23.1" "@react-native-clipboard/clipboard": "npm:^1.16.1" "@react-native-community/checkbox": "npm:^0.5.20" "@react-native-community/cli": "npm:15.0.1" "@react-native-community/cli-platform-android": "npm:15.0.1" "@react-native-community/cli-platform-ios": "npm:15.0.1" "@react-native-community/cli-server-api": "npm:^17.0.0" - "@react-native-community/datetimepicker": "npm:^8.3.0" + "@react-native-community/datetimepicker": "npm:8.2.0" "@react-native-community/netinfo": "npm:^11.4.1" - "@react-native-community/slider": "npm:^4.4.3" + "@react-native-community/slider": "npm:4.5.5" "@react-native-cookies/cookies": "npm:^6.2.1" "@react-native-firebase/app": "npm:^20.5.0" "@react-native-firebase/messaging": "npm:^20.5.0" @@ -36087,8 +36086,8 @@ __metadata: "@sentry/browser": "npm:~8.54.0" "@sentry/core": "npm:~8.54.0" "@sentry/react": "npm:~8.54.0" - "@sentry/react-native": "npm:~6.15.0" - "@shopify/flash-list": "npm:2.0.3" + "@sentry/react-native": "npm:~6.10.0" + "@shopify/flash-list": "npm:1.7.3" "@solana/addresses": "npm:2.0.0" "@storybook/addon-controls": "npm:^7.5.1" "@storybook/addon-ondevice-controls": "npm:^6.5.6" @@ -36209,9 +36208,10 @@ __metadata: expo-apple-authentication: "npm:~7.1.3" expo-asset: "npm:~11.0.5" expo-auth-session: "npm:~6.0.3" - expo-build-properties: "npm:~0.13.2" + expo-build-properties: "npm:~0.13.3" expo-dev-client: "npm:~5.0.18" expo-file-system: "npm:~18.0.7" + expo-font: "npm:~13.0.4" expo-haptics: "npm:~14.0.1" expo-image: "npm:~2.0.7" expo-screen-orientation: "npm:~8.0.4" @@ -36234,7 +36234,7 @@ __metadata: lint-staged: "npm:10.5.4" listr2: "npm:^8.0.2" lodash: "npm:^4.17.21" - lottie-react-native: "npm:6.7.2" + lottie-react-native: "npm:7.1.0" luxon: "npm:^3.5.0" metro-react-native-babel-preset: "npm:~0.76.9" metro-react-native-babel-transformer: "npm:~0.76.9" @@ -36280,7 +36280,7 @@ __metadata: react-native-fade-in-image: "npm:1.4.1" react-native-fast-crypto: "npm:^2.2.0" react-native-fs: "npm:^2.20.0" - react-native-gesture-handler: "npm:^2.25.0" + react-native-gesture-handler: "npm:~2.20.2" react-native-get-random-values: "npm:^1.8.0" react-native-gzip: "npm:^1.1.0" react-native-i18n: "npm:2.0.15" @@ -36297,7 +36297,7 @@ __metadata: react-native-modal: "npm:^14.0.0-rc.1" react-native-nitro-modules: "npm:^0.29.6" react-native-os: "npm:^1.2.6" - react-native-pager-view: "npm:^6.7.0" + react-native-pager-view: "npm:6.5.1" react-native-performance: "npm:^5.1.2" react-native-permissions: "npm:^3.7.2" react-native-progress: "npm:3.5.0" @@ -36305,18 +36305,18 @@ __metadata: react-native-quick-base64: "npm:^2.2.0" react-native-quick-crypto: "npm:^0.7.15" react-native-randombytes: "npm:^3.5.3" - react-native-reanimated: "npm:^3.17.2" + react-native-reanimated: "npm:~3.16.1" react-native-release-profiler: "npm:^0.4.0" react-native-render-html: "npm:^6.3.4" - react-native-safe-area-context: "npm:^5.4.0" - react-native-screens: "npm:3.37.0" + react-native-safe-area-context: "npm:4.12.0" + react-native-screens: "npm:~4.4.0" react-native-sensors: "npm:5.3.0" react-native-share: "npm:7.3.7" react-native-size-matters: "npm:0.4.0" react-native-skeleton-placeholder: "npm:^5.0.0" react-native-step-indicator: "npm:^1.0.3" react-native-storybook-loader: "npm:^2.0.4" - react-native-svg: "npm:^15.11.1" + react-native-svg: "npm:15.8.0" react-native-svg-asset-plugin: "npm:^0.5.0" react-native-svg-charts: "npm:^5.4.0" react-native-svg-transformer: "npm:^1.0.0" @@ -36325,7 +36325,7 @@ __metadata: react-native-url-polyfill: "npm:^1.3.0" react-native-vector-icons: "npm:10.2.0" react-native-video: "npm:^6.10.1" - react-native-view-shot: "npm:^3.1.2" + react-native-view-shot: "npm:~4.0.3" react-native-vision-camera: "npm:^4.6.4" react-redux: "npm:^8.1.3" react-test-renderer: "npm:18.3.1" @@ -39964,7 +39964,7 @@ __metadata: languageName: node linkType: hard -"prop-types@npm:*, prop-types@npm:^15.5.10, prop-types@npm:^15.5.7, prop-types@npm:^15.5.8, prop-types@npm:^15.5.9, prop-types@npm:^15.6.0, prop-types@npm:^15.6.2, prop-types@npm:^15.7.2, prop-types@npm:^15.8.1": +"prop-types@npm:*, prop-types@npm:15.8.1, prop-types@npm:^15.5.10, prop-types@npm:^15.5.7, prop-types@npm:^15.5.8, prop-types@npm:^15.5.9, prop-types@npm:^15.6.0, prop-types@npm:^15.6.2, prop-types@npm:^15.7.2, prop-types@npm:^15.8.1": version: 15.8.1 resolution: "prop-types@npm:15.8.1" dependencies: @@ -40842,17 +40842,18 @@ __metadata: languageName: node linkType: hard -"react-native-gesture-handler@npm:^2.25.0": - version: 2.25.0 - resolution: "react-native-gesture-handler@npm:2.25.0" +"react-native-gesture-handler@npm:~2.20.2": + version: 2.20.2 + resolution: "react-native-gesture-handler@npm:2.20.2" dependencies: "@egjs/hammerjs": "npm:^2.0.17" hoist-non-react-statics: "npm:^3.3.0" invariant: "npm:^2.2.4" + prop-types: "npm:^15.7.2" peerDependencies: react: "*" react-native: "*" - checksum: 10/780c53e90b41c8bc151c5b4dc908386d5709e7b8e5eaf44e8bbadc02b39d7b07ec15c3865e08f30463bd1fbfcac14a79ff8238752712e6f15a0f98b7a658afd3 + checksum: 10/64ab125c539ca8c275f5d305f5e11d366e6098d9e24e3cab25cbfd46a8d618fc3925ea86219972ccc63364e578384bb0120a72562312e596894a04ee0518a363 languageName: node linkType: hard @@ -40914,16 +40915,6 @@ __metadata: languageName: node linkType: hard -"react-native-is-edge-to-edge@npm:1.1.7": - version: 1.1.7 - resolution: "react-native-is-edge-to-edge@npm:1.1.7" - peerDependencies: - react: "*" - react-native: "*" - checksum: 10/4cdf2b2fb5b131f2015c26d2cb7688b4a0c5f3c8474b1bf0ddfa9eabb0263df440c87262ae8f812a6ecab0d5310df0373bddad4b51f53dabb2ffee01e9ef0f44 - languageName: node - linkType: hard - "react-native-jazzicon@npm:^0.1.2": version: 0.1.2 resolution: "react-native-jazzicon@npm:0.1.2" @@ -41061,13 +41052,13 @@ __metadata: languageName: node linkType: hard -"react-native-pager-view@npm:^6.7.0": - version: 6.7.1 - resolution: "react-native-pager-view@npm:6.7.1" +"react-native-pager-view@npm:6.5.1": + version: 6.5.1 + resolution: "react-native-pager-view@npm:6.5.1" peerDependencies: react: "*" react-native: "*" - checksum: 10/22cc95dcf5085cab2b88272610b836375044cc9ab22f8e81f586e9ecb5c75880dc2c649321cbd173b48c6c7025c9914ab4b67ed0207f623a84ea26025257a4e0 + checksum: 10/3edba80853d8b3b42b3d64cda99894ef75c5e1190321b4f20c85bee289d0f28d7fe6a0736606eecf900522ffb368e4de7ef01d143ea1f67325f76e91168f4e5e languageName: node linkType: hard @@ -41150,9 +41141,9 @@ __metadata: languageName: node linkType: hard -"react-native-reanimated@npm:^3.17.2": - version: 3.17.5 - resolution: "react-native-reanimated@npm:3.17.5" +"react-native-reanimated@npm:~3.16.1": + version: 3.16.7 + resolution: "react-native-reanimated@npm:3.16.7" dependencies: "@babel/plugin-transform-arrow-functions": "npm:^7.0.0-0" "@babel/plugin-transform-class-properties": "npm:^7.0.0-0" @@ -41165,12 +41156,11 @@ __metadata: "@babel/preset-typescript": "npm:^7.16.7" convert-source-map: "npm:^2.0.0" invariant: "npm:^2.2.4" - react-native-is-edge-to-edge: "npm:1.1.7" peerDependencies: "@babel/core": ^7.0.0-0 react: "*" react-native: "*" - checksum: 10/63501d8ac0cb2039e60ac93bc779e946af267bb55f95cf53ed538bcf9bfca030fa5d84d5c9343dcbc4d8df0d5e9d7c58ca5647d43b17f8399dec11d812da11fc + checksum: 10/37099178efca335ea74bb0fc1b50ad898c2b24b1ed99e67bfb90e8898e1fadace2d2765a275d7d23b9c141d19fc673bb4b78dcb9f47d08921dd911c76b5040aa languageName: node linkType: hard @@ -41209,26 +41199,26 @@ __metadata: languageName: node linkType: hard -"react-native-safe-area-context@npm:^5.4.0": - version: 5.4.0 - resolution: "react-native-safe-area-context@npm:5.4.0" +"react-native-safe-area-context@npm:4.12.0": + version: 4.12.0 + resolution: "react-native-safe-area-context@npm:4.12.0" peerDependencies: react: "*" react-native: "*" - checksum: 10/3b94e0a39398f23f4cbec2e49ebfd58c4e56f1d4157fda613c3bab66924a4e71ed6665a346dd71fd04ebd40e00f606f10d5a973b2616be4bfa0a422b361a425f + checksum: 10/1db86f38c20c8b22ea274ea895b3cedbb1f8d8260d7f726ab4ee315f5e1e611ba3dde89c43dcb3ccccf97dfc3e7d8b11b79ffe4a6369697b6fed3bd80eaaf7c5 languageName: node linkType: hard -"react-native-screens@npm:3.37.0": - version: 3.37.0 - resolution: "react-native-screens@npm:3.37.0" +"react-native-screens@npm:~4.4.0": + version: 4.4.0 + resolution: "react-native-screens@npm:4.4.0" dependencies: react-freeze: "npm:^1.0.0" warn-once: "npm:^0.1.0" peerDependencies: react: "*" react-native: "*" - checksum: 10/2cf1b3c850598660fb2d50bf2aa227f1c3f0bb5c41689d4d2782d95267e9e99a46b067f85610902c6cae31fcf2e8629e14769f081557864b57c2c7ee6587b684 + checksum: 10/a70d036674611b327c01e6c3a147b9d22b59d7e58cfd82a9df5a070fac26af17b65bcd1ec911ec3516c6d9e2782a48577b5ac2f576a196ad5fff1fddcf17bf38 languageName: node linkType: hard @@ -41339,9 +41329,9 @@ __metadata: languageName: node linkType: hard -"react-native-svg@npm:^15.11.1": - version: 15.11.2 - resolution: "react-native-svg@npm:15.11.2" +"react-native-svg@npm:15.8.0": + version: 15.8.0 + resolution: "react-native-svg@npm:15.8.0" dependencies: css-select: "npm:^5.1.0" css-tree: "npm:^1.1.3" @@ -41349,7 +41339,7 @@ __metadata: peerDependencies: react: "*" react-native: "*" - checksum: 10/bab86df8fdd4f500ad3f242558726693b0409b5e9b2a97cb3e9b5c1dfdcef01fe73fd36f01926ef20b19f99928b6ab1fb9e942bbeb1308aab27aa0d6c4877a5e + checksum: 10/9a60d1f33539c41ca50b2c21e6d8909e52a3bdf67b29b9231c7ffe72120fc8cb6d7fca45723bd9219b993202ade2343c97c7e4f53de7ee2446279ac91426b096 languageName: node linkType: hard @@ -41441,15 +41431,15 @@ __metadata: languageName: node linkType: hard -"react-native-view-shot@npm:^3.1.2": - version: 3.8.0 - resolution: "react-native-view-shot@npm:3.8.0" +"react-native-view-shot@npm:~4.0.3": + version: 4.0.3 + resolution: "react-native-view-shot@npm:4.0.3" dependencies: html2canvas: "npm:^1.4.1" peerDependencies: react: "*" react-native: "*" - checksum: 10/abcde94525a0c25061af404d344e7aff015fb5d839ee8fde50c9e718db6f68f709b17f5e25498412e8b8a386e4094843205d938111f79595d6f9b8eacc0fee46 + checksum: 10/5e4f133a69754cd5fd29bf762bfa5bf399f4c0b192972808cf4194e4775ac5d4415e01079e52be7d31bc5b25fe7efbd5e95f4a33967bab0f36725d4cc8903345 languageName: node linkType: hard @@ -42051,6 +42041,20 @@ __metadata: languageName: node linkType: hard +"recyclerlistview@npm:4.2.1": + version: 4.2.1 + resolution: "recyclerlistview@npm:4.2.1" + dependencies: + lodash.debounce: "npm:4.0.8" + prop-types: "npm:15.8.1" + ts-object-utils: "npm:0.0.5" + peerDependencies: + react: ">= 15.2.1" + react-native: ">= 0.30.0" + checksum: 10/9c5080bfeb59a5b3127bf7b66338278b7fbc40a56aa1644add7e3de280a1f24458c49fdb08299058041f3afe49a085d06cfdfc997852345c4e9090ef48d27da6 + languageName: node + linkType: hard + "redent@npm:^3.0.0": version: 3.0.0 resolution: "redent@npm:3.0.0" @@ -45608,6 +45612,13 @@ __metadata: languageName: node linkType: hard +"ts-object-utils@npm:0.0.5": + version: 0.0.5 + resolution: "ts-object-utils@npm:0.0.5" + checksum: 10/83c48fbdaba392fb2c01cea53b267ed5538d2bb44fc6c3eecc10bcfabc1780bfa6ec8569b52bbf0140d9b521d9049d5f15884e12286918244d463d854dbc73cb + languageName: node + linkType: hard + "ts-regex-builder@npm:^1.8.2": version: 1.8.2 resolution: "ts-regex-builder@npm:1.8.2"