We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa4886b commit 0be97dcCopy full SHA for 0be97dc
app/components/Views/Settings/ExperimentalSettings/index.tsx
@@ -19,7 +19,6 @@ import Button, {
19
ButtonSize,
20
ButtonWidthTypes,
21
} from '../../../../component-library/components/Buttons/Button';
22
-import Device from '../../../../../app/util/device';
23
import { SES_URL } from '../../../../../app/constants/urls';
24
25
const storage = new MMKV(); // id: mmkv.default
@@ -141,7 +140,7 @@ const ExperimentalSettings = ({ navigation, route }: Props) => {
141
140
return (
142
<ScrollView style={styles.wrapper}>
143
<WalletConnectSettings />
144
- {Device.isIos() && <SesSettings />}
+ <SesSettings />
145
</ScrollView>
146
);
147
};
0 commit comments