Skip to content

Commit 4583a04

Browse files
Merge upstream develop
2 parents f43920f + bd3524b commit 4583a04

4 files changed

Lines changed: 20 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import { isWeb } from '@/src/common/util/platform';
2+
import { Stack } from 'expo-router';
3+
4+
export const unstable_settings = {
5+
initialRouteName: 'index',
6+
};
7+
8+
export default function SettingsTabStackLayout() {
9+
10+
return (
11+
<Stack
12+
screenOptions={{
13+
headerShown: false,
14+
fullScreenGestureEnabled: !isWeb,
15+
...(isWeb ? { animation: 'none' as const } : {}),
16+
}}
17+
/>
18+
);
19+
}
File renamed without changes.
File renamed without changes.

apps/polycentric/src/features/identity-pairing/screens/PairIdentityIssuerScreen.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,7 @@ export default function PairIdentityIssuerScreen() {
279279
claimerToApprove,
280280
pairAsRotationKey,
281281
);
282+
router.back();
282283
} catch {
283284
} finally {
284285
setApprovingClaimers((prev) => {

0 commit comments

Comments
 (0)