From 9a62fba9d79a788494a6a7093881bda3c51f5457 Mon Sep 17 00:00:00 2001 From: Joshua Blum Date: Thu, 2 Apr 2026 13:24:47 -0400 Subject: [PATCH] fatalError on KeybaseInit failure --- shared/ios/Keybase/AppDelegate.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/shared/ios/Keybase/AppDelegate.swift b/shared/ios/Keybase/AppDelegate.swift index 552e476c294e..54c04ce57293 100644 --- a/shared/ios/Keybase/AppDelegate.swift +++ b/shared/ios/Keybase/AppDelegate.swift @@ -237,6 +237,7 @@ public class AppDelegate: ExpoAppDelegate, UNUserNotificationCenterDelegate, "KeybaseInit FAILED: %@ (code=%ld domain=%@)", err.localizedDescription, err.code, err.domain) self.writeStartupTimingLog("KeybaseInit \(initResult)") + fatalError("KeybaseInit failed: \(initResult)") } else { KbSetInitResult("succeeded") self.writeStartupTimingLog("KeybaseInit succeeded")