diff --git a/apps/mobile/src/assets/images/assets.js b/apps/mobile/src/assets/images/assets.js index f9ead83d8..f78210ad6 100644 --- a/apps/mobile/src/assets/images/assets.js +++ b/apps/mobile/src/assets/images/assets.js @@ -1,6 +1,10 @@ export const LAUNCH_ROCKET = color => ``; +export const COMMUNITY_SVG = color => ` + + `; + export const SUPPORT_SVG = () => ``; diff --git a/apps/mobile/src/components/walkthroughs/walkthroughs.tsx b/apps/mobile/src/components/walkthroughs/walkthroughs.tsx index 0fd38a829..fdcf33683 100644 --- a/apps/mobile/src/components/walkthroughs/walkthroughs.tsx +++ b/apps/mobile/src/components/walkthroughs/walkthroughs.tsx @@ -289,8 +289,6 @@ const trialstarted: { id: string; steps: TStep[] } = { }, { - // title: 'Make yourself at home', - // text: 'Pick a theme of your choice', walkthroughItem: () => , button: { type: 'next', diff --git a/apps/mobile/src/screens/settings/appearance.js b/apps/mobile/src/screens/settings/appearance.js index ff23e02ab..b6fe736e7 100644 --- a/apps/mobile/src/screens/settings/appearance.js +++ b/apps/mobile/src/screens/settings/appearance.js @@ -91,34 +91,20 @@ export const HomagePageSelector = () => { ); }; -export const AccentColorPicker = ({ settings = true, wrap = false }) => { +export const AccentColorPicker = ({ settings = true, wrap = true }) => { const colors = useThemeStore(state => state.colors); function changeAccentColor(color) { switchAccentColor(color); } return ( - {[ @@ -173,6 +159,6 @@ export const AccentColorPicker = ({ settings = true, wrap = false }) => { ))} - + ); };