()
| 113 | let hasCompletedFirstRelaunch = false; |
| 114 | |
| 115 | async function getClientId() { |
| 116 | if (cachedClientId != null) { |
| 117 | return cachedClientId; |
| 118 | } |
| 119 | const clientData = await ClientService.GetClientData(); |
| 120 | cachedClientId = clientData?.oid; |
| 121 | return cachedClientId; |
| 122 | } |
| 123 | |
| 124 | type WindowActionQueueEntry = |
| 125 | | { |
no test coverage detected