Skip to content

Commit

Permalink
AppCoordinator will not fatalError when credentials are invalid
Browse files Browse the repository at this point in the history
* Avoids breaking bootstrapping tests
  • Loading branch information
Lofionic committed Jun 20, 2024
1 parent e07f47b commit 325dcbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SpaceKitSample/SpaceKitSample/AppCoordinator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ import SpaceKit
do {
try await self.loadVenue(in: organizationIdentifier, with: venueIdentifier)
} catch {
fatalError(error.localizedDescription)
print(error.localizedDescription)
}
}
}
Expand Down

0 comments on commit 325dcbc

Please sign in to comment.