diff --git a/.iyarc b/.iyarc
index abbf0e189d2..270b51b7610 100644
--- a/.iyarc
+++ b/.iyarc
@@ -1,3 +1,4 @@
# ReDoS vulnerability, no impact to this application, and fix not backported yet to the versions we use
GHSA-c2qf-rxjj-qqgw
+GHSA-8hc4-vh64-cxmj
\ No newline at end of file
diff --git a/app/component-library/components/Icons/Icon/assets/export.svg b/app/component-library/components/Icons/Icon/assets/export.svg
index 2f20cabbd05..e6e266fd06a 100644
--- a/app/component-library/components/Icons/Icon/assets/export.svg
+++ b/app/component-library/components/Icons/Icon/assets/export.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/components/Views/OnboardingSuccess/__snapshots__/index.test.js.snap b/app/components/Views/OnboardingSuccess/__snapshots__/index.test.js.snap
index 04a715330df..b9c51698952 100644
--- a/app/components/Views/OnboardingSuccess/__snapshots__/index.test.js.snap
+++ b/app/components/Views/OnboardingSuccess/__snapshots__/index.test.js.snap
@@ -1,74 +1,59 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`OnboardingSuccess should render correctly 1`] = `
-
-
-
- 🎉
-
-
- Your Wallet is ready
-
+
+
+ 🎉
+
+ Your Wallet is ready
+
+
- Remember, if you lose your Secret Recovery Phrase, you lose access to your wallet.
+ Remember, if you lose your Secret Recovery Phrase, you lose access to your wallet.
- Learn how
-
+
+ Learn how
+
+
+ to keep this set of words safe so you can always access your funds.
- to keep this set of words safe so you can always access your funds.
-
-
-
-
+
-
-
-
+ >
+
+
+
+ Manage default settings
+
+
- Manage default settings
-
-
-
- Settings are optimized for ease of use and security.
+ Settings are optimized for ease of use and security.
Change these at any time.
-
+
+
-
-
-
-
- Done
-
-
+
+ Done
+
+
+
+
-
-
+
`;
diff --git a/app/components/Views/OnboardingSuccess/index.styles.ts b/app/components/Views/OnboardingSuccess/index.styles.ts
index b31a50bce89..10b6abba87a 100644
--- a/app/components/Views/OnboardingSuccess/index.styles.ts
+++ b/app/components/Views/OnboardingSuccess/index.styles.ts
@@ -3,15 +3,15 @@ import { StyleSheet } from 'react-native';
const styles = StyleSheet.create({
root: {
flex: 1,
- alignItems: 'center',
},
contentWrapper: {
flex: 1,
- paddingTop: '10%',
+ paddingTop: 24,
+ padding: 24,
},
buttonWrapper: {
- width: '85%',
- bottom: 50,
+ paddingHorizontal: 24,
+ paddingBottom: 50,
},
emoji: {
textAlign: 'center',
diff --git a/app/components/Views/OnboardingSuccess/index.tsx b/app/components/Views/OnboardingSuccess/index.tsx
index b8f7feb47c9..cb3d2d859d1 100644
--- a/app/components/Views/OnboardingSuccess/index.tsx
+++ b/app/components/Views/OnboardingSuccess/index.tsx
@@ -1,5 +1,6 @@
import React, { useLayoutEffect, useState } from 'react';
import {
+ ScrollView,
View,
Linking,
Keyboard,
@@ -193,7 +194,7 @@ const OnboardingSuccess = ({
};
return (
-
@@ -213,7 +214,7 @@ const OnboardingSuccess = ({
/>
{renderHint()}
-
+
);
};