(accounts)
| 1290 | } |
| 1291 | |
| 1292 | async function syncHotmailAccounts(accounts) { |
| 1293 | const normalized = normalizeHotmailAccounts(accounts); |
| 1294 | await setPersistentSettings({ hotmailAccounts: normalized }); |
| 1295 | await setState({ hotmailAccounts: normalized }); |
| 1296 | broadcastDataUpdate({ hotmailAccounts: normalized }); |
| 1297 | return normalized; |
| 1298 | } |
| 1299 | |
| 1300 | async function upsertHotmailAccount(input) { |
| 1301 | const state = await getState(); |
no test coverage detected