You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the application offline, the icons on the menubar are not showing (empty) - for example the Secrets Manager / Cert Manager / … / OrgControlls icons (the Support icons does show).
From looking on the UI console it seems that it tries to pull the lottiefile wasm player but I’m on an offline network so the link unpkg.com does not exist.
I already know this issue from different project, you can fix this by adding at the root component (for example App.tsx) the imports:
Then in the place you added the imports (e.g. main.tsx before the html root creation or in the app.tsx before the return statement - it doesn't matter where as long as it happens in the root of the application on load) add this statement:
setWasmUrl(lottieWasmUrl);
This will configure the library to use the player from the npm package instead of relying on downloading it from the cdn.
To Reproduce
Disable your internet connection and delete your browser cache. open infisical instance and you can see that in the menubar the icons are not showing.
The text was updated successfully, but these errors were encountered:
Describe the bug
When using the application offline, the icons on the menubar are not showing (empty) - for example the Secrets Manager / Cert Manager / … / OrgControlls icons (the Support icons does show).
From looking on the UI console it seems that it tries to pull the lottiefile wasm player but I’m on an offline network so the link unpkg.com does not exist.
I already know this issue from different project, you can fix this by adding at the root component (for example App.tsx) the imports:
Then in the place you added the imports (e.g. main.tsx before the html root creation or in the app.tsx before the return statement - it doesn't matter where as long as it happens in the root of the application on load) add this statement:
This will configure the library to use the player from the npm package instead of relying on downloading it from the cdn.
To Reproduce
Disable your internet connection and delete your browser cache. open infisical instance and you can see that in the menubar the icons are not showing.
The text was updated successfully, but these errors were encountered: