()
| 104 | |
| 105 | // Updates the local object from the storage to enable synchronous access |
| 106 | export async function preloadSyncLocalStrings(): Promise<void> { |
| 107 | if (isDevelopmentVersion() || isEnterprise()) { |
| 108 | return; |
| 109 | } |
| 110 | |
| 111 | localStrings = await localStringsHotfix.get() ?? {}; |
| 112 | } |
no test coverage detected