()
| 1184 | } |
| 1185 | |
| 1186 | async function maybeRemoveApiKeyFromMacOSKeychain(): Promise<void> { |
| 1187 | try { |
| 1188 | await maybeRemoveApiKeyFromMacOSKeychainThrows() |
| 1189 | } catch (e) { |
| 1190 | logError(e) |
| 1191 | } |
| 1192 | } |
| 1193 | |
| 1194 | // Function to store OAuth tokens in secure storage |
| 1195 | export function saveOAuthTokensIfNeeded(tokens: OAuthTokens): { |
no test coverage detected