()
| 1233 | } |
| 1234 | |
| 1235 | async function maybeRemoveApiKeyFromMacOSKeychain(): Promise<void> { |
| 1236 | try { |
| 1237 | await maybeRemoveApiKeyFromMacOSKeychainThrows() |
| 1238 | } catch (e) { |
| 1239 | logError(e) |
| 1240 | } |
| 1241 | } |
| 1242 | |
| 1243 | // Function to store OAuth tokens in secure storage |
| 1244 | export function saveOAuthTokensIfNeeded(tokens: OAuthTokens): { |
no test coverage detected