fix staging pipelines (#1442)

This commit is contained in:
Justin Hernandez
2025-11-20 19:14:38 -03:00
committed by GitHub
parent 6226cb0c2a
commit 180638dc57
2 changed files with 3 additions and 5 deletions

View File

@@ -7,8 +7,6 @@ export const TURNKEY_OAUTH_REDIRECT_URI_ANDROID = 'https://redirect.self.xyz';
export const TURNKEY_OAUTH_REDIRECT_URI_IOS =
'https://oauth-redirect.turnkey.com';
// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
// Re-export all mocks for easier imports
export { parseScanResponse, scan } from '@/devtools/mocks/nfcScanner';

View File

@@ -72,8 +72,8 @@ const SplashScreen: React.FC = ({}) => {
await checkAndUpdateRegistrationStates(selfClient);
}
const hasValid = await hasAnyValidRegisteredDocument(selfClient);
const parentScreen = hasValid ? 'Home' : 'Home';
await hasAnyValidRegisteredDocument(selfClient);
const parentScreen = 'Home';
// Migrate keychain to secure storage with biometric protection
try {