diff --git a/app/mobile/src/access/create/Create.jsx b/app/mobile/src/access/create/Create.jsx
index b7c8af28..2969964c 100644
--- a/app/mobile/src/access/create/Create.jsx
+++ b/app/mobile/src/access/create/Create.jsx
@@ -1,4 +1,4 @@
-import { KeyboardAvoidingView, ScrollView, ActivityIndicator, Alert, Modal, Text, TextInput, View, TouchableOpacity } from 'react-native';
+import { Platform, KeyboardAvoidingView, ScrollView, ActivityIndicator, Alert, Modal, Text, TextInput, View, TouchableOpacity } from 'react-native';
import { styles } from './Create.styled';
import Ionicons from 'react-native-vector-icons/AntDesign';
import { useCreate } from './useCreate.hook';
@@ -138,23 +138,25 @@ export function Create() {
)}
-
-
- View Terms of Service
-
- actions.agree(!state.agree)}>
- { state.agree && (
-
- )}
- { !state.agree && (
-
- )}
- I agree to Terms of Service
-
-
+ { Platform.OS !== 'ios' && (
+
+
+ View Terms of Service
+
+ actions.agree(!state.agree)}>
+ { state.agree && (
+
+ )}
+ { !state.agree && (
+
+ )}
+ I agree to Terms of Service
+
+
+ )}
- { state.enabled && state.agree && (
+ { state.enabled && (state.agree || Platform.OS === 'ios') && (
{ state.busy && (
@@ -164,7 +166,7 @@ export function Create() {
)}
)}
- { (!state.enabled || !state.agree) && (
+ { (!state.enabled || (!state.agree && Platform.OS !== 'ios')) && (
Create Account