Skip to content

Commit 61c2308

Browse files
committed
fix: manually specify latest iOS to appease AppStore
1 parent 9d691b7 commit 61c2308

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

apps/mobile/eas.json

+10-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
},
1313
"ios": {
1414
"simulator": true,
15-
"cocoapods": "1.15.2"
15+
"cocoapods": "1.15.2",
16+
"image": "latest"
1617
}
1718
},
1819
"simulator-dev": {
@@ -21,7 +22,8 @@
2122
"distribution": "internal",
2223
"ios": {
2324
"simulator": true,
24-
"cocoapods": "1.15.2"
25+
"cocoapods": "1.15.2",
26+
"image": "latest"
2527
},
2628
"android": {
2729
"image": "latest"
@@ -33,7 +35,8 @@
3335
"distribution": "internal",
3436
"ios": {
3537
"simulator": true,
36-
"cocoapods": "1.15.2"
38+
"cocoapods": "1.15.2",
39+
"image": "latest"
3740
},
3841
"android": {
3942
"image": "latest"
@@ -45,6 +48,7 @@
4548
"developmentClient": true,
4649
"distribution": "internal",
4750
"ios": {
51+
"image": "latest",
4852
"cocoapods": "1.15.2"
4953
}
5054
},
@@ -53,6 +57,7 @@
5357
"pnpm": "10.4.1",
5458
"distribution": "internal",
5559
"ios": {
60+
"image": "latest",
5661
"simulator": true,
5762
"cocoapods": "1.15.2"
5863
}
@@ -62,6 +67,7 @@
6267
"pnpm": "10.4.1",
6368
"distribution": "internal",
6469
"ios": {
70+
"image": "latest",
6571
"cocoapods": "1.15.2"
6672
}
6773
},
@@ -71,6 +77,7 @@
7177
"distribution": "store",
7278
"autoIncrement": true,
7379
"ios": {
80+
"image": "latest",
7481
"cocoapods": "1.15.2"
7582
},
7683
"android": {

apps/mobile/src/components/create-new-wallet/mnemonic-display.tsx

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
import { useRef, useState } from 'react';
1+
import { useRef } from 'react';
22

3-
import {
4-
NotifyUserSheetData,
5-
NotifyUserSheetLayout,
6-
} from '@/components/sheets/notify-user-sheet.layout';
3+
import { NotifyUserSheetLayout } from '@/components/sheets/notify-user-sheet.layout';
74
import { WaitlistIds } from '@/features/waitlist/ids';
85
import { t } from '@lingui/macro';
96
import { useTheme } from '@shopify/restyle';
@@ -78,7 +75,7 @@ export function MnemonicDisplay({
7875
buttonState="outline"
7976
title={t({
8077
id: 'create_new_wallet.mnemonic.save_button',
81-
message: `Save to...`,
78+
message: `Save to`,
8279
})}
8380
/>
8481
</Box>
@@ -88,7 +85,7 @@ export function MnemonicDisplay({
8885
sheetData={{
8986
title: t({
9087
id: 'create_new_wallet.mnemonic.save_button.waitlist_title',
91-
message: 'Save to...',
88+
message: 'Save to',
9289
}),
9390
id: WaitlistIds.saveMnemonic,
9491
}}

0 commit comments

Comments
 (0)