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