()
| 1257 | } |
| 1258 | |
| 1259 | async function maybeRemoveApiKeyFromMacOSKeychain(): Promise<void> { |
| 1260 | try { |
| 1261 | await maybeRemoveApiKeyFromMacOSKeychainThrows() |
| 1262 | } catch (e) { |
| 1263 | logError(e) |
| 1264 | } |
| 1265 | } |
| 1266 | |
| 1267 | // Function to store OAuth tokens in secure storage |
| 1268 | export function saveOAuthTokensIfNeeded(tokens: OAuthTokens): { |
no test coverage detected