From 6cc8de94f205a8a35669aac2b5aee3a94e612145 Mon Sep 17 00:00:00 2001 From: Sarthak Agrawal Date: Fri, 21 Aug 2026 18:34:48 +0530 Subject: [PATCH] chore: adopt shared account runtime --- .../project.xcworkspace/xcshareddata/swiftpm/Package.resolved | 2 +- ios/Sources/Kith/AppModel.swift | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ios/Kith.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/ios/Kith.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 9f73c33..2b29c0f 100644 --- a/ios/Kith.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/ios/Kith.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -7,7 +7,7 @@ "location" : "https://github.com/Significant-Hobbies/personal-platform.git", "state" : { "branch" : "main", - "revision" : "28e0664ad76ab0f9b71f671abf3b796f0f241008" + "revision" : "c956eb6b44fdb972ff449e1bfe3a02e7a5f28219" } } ], diff --git a/ios/Sources/Kith/AppModel.swift b/ios/Sources/Kith/AppModel.swift index ae89044..120e615 100644 --- a/ios/Sources/Kith/AppModel.swift +++ b/ios/Sources/Kith/AppModel.swift @@ -22,7 +22,7 @@ final class AppModel { private let store: KithStore private let cloud: KithCloudStore? private let platform: PersonalPlatformConnection? - let account: PersonalWebSignInModel? + let account: PersonalAccountModel? init( store: KithStore = KithStore(), @@ -32,7 +32,7 @@ final class AppModel { self.store = store self.platform = platform account = platform.map { - PersonalWebSignInModel(identity: $0.identity, callbackScheme: "kith") + PersonalAccountModel(identity: $0.identity, callbackScheme: "kith") } let arguments = ProcessInfo.processInfo.arguments self.cloud = Self.isDemoLaunch(arguments) ? nil : cloud