diff --git a/mobile-app/app/screens/WalletNavigator/screens/CreateWallet/WalletCreateRestoreSuccess.tsx b/mobile-app/app/screens/WalletNavigator/screens/CreateWallet/WalletCreateRestoreSuccess.tsx index e58fbcf9e6..c5358580e5 100644 --- a/mobile-app/app/screens/WalletNavigator/screens/CreateWallet/WalletCreateRestoreSuccess.tsx +++ b/mobile-app/app/screens/WalletNavigator/screens/CreateWallet/WalletCreateRestoreSuccess.tsx @@ -48,7 +48,7 @@ export function WalletCreateRestoreSuccess({ route }: Props): JSX.Element { } async function discoverWalletAddresses( - data: WalletPersistenceDataI + data: WalletPersistenceDataI, ): Promise { const provider = await MnemonicEncrypted.initProvider(data, network, { /** @@ -87,13 +87,13 @@ export function WalletCreateRestoreSuccess({ route }: Props): JSX.Element { {translate( "screens/WalletCreateRestoreSuccess", - isWalletRestored ? "Wallet restored!" : "Wallet created!" + isWalletRestored ? "Wallet restored!" : "Wallet created!", )} {translate( "screens/WalletCreateRestoreSuccess", - "Access decentralized finance with Bitcoin-grade security, strength and immutability." + "Access decentralized finance with Bitcoin-grade security, strength and immutability.", )} @@ -106,7 +106,7 @@ export function WalletCreateRestoreSuccess({ route }: Props): JSX.Element { > diff --git a/mobile-app/app/screens/WalletNavigator/screens/components/LoansCarousel.tsx b/mobile-app/app/screens/WalletNavigator/screens/components/LoansCarousel.tsx index f1464f85d3..9fc956ba6c 100644 --- a/mobile-app/app/screens/WalletNavigator/screens/components/LoansCarousel.tsx +++ b/mobile-app/app/screens/WalletNavigator/screens/components/LoansCarousel.tsx @@ -110,7 +110,7 @@ export function LoansCarousel({ "bg-mono-light-v2-100": isLight, }, { "-mt-0.5": Platform.OS === "ios" }, - { "-mt-1": Platform.OS === "android" } + { "-mt-1": Platform.OS === "android" }, )} testID="loans_carousel" > @@ -146,7 +146,9 @@ export function LoansCarousel({ dismissModal={dismissModal} /> )} - renderItem={({ item }) => {item}} + renderItem={({ item }) => ( + {item} + )} showPagination /> diff --git a/mobile-app/app/screens/WalletNavigator/screens/components/OnboardingCarousel.tsx b/mobile-app/app/screens/WalletNavigator/screens/components/OnboardingCarousel.tsx index 60f31c2d1b..83979c2825 100644 --- a/mobile-app/app/screens/WalletNavigator/screens/components/OnboardingCarousel.tsx +++ b/mobile-app/app/screens/WalletNavigator/screens/components/OnboardingCarousel.tsx @@ -103,7 +103,9 @@ export function OnboardingCarousel(): JSX.Element { } paginationStyleItem={tailwind("h-1.5 w-1.5 mx-0.75")} PaginationComponent={CarouselPagination} - renderItem={({ item }) => {item}} + renderItem={({ item }) => ( + {item} + )} showPagination /> );