@uxland/primary-shell 7.40.1 → 7.40.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uxland/primary-shell",
3
- "version": "7.40.1",
3
+ "version": "7.40.3",
4
4
  "description": "Primaria Shell",
5
5
  "author": "UXLand <dev@uxland.es>",
6
6
  "homepage": "https://github.com/uxland/harmonix/tree/app#readme",
@@ -36,9 +36,7 @@ const internalPlugins: PluginDefinition[] = [
36
36
  export const bootstrapPlugins = async (plugins: PluginDefinition[], startup?: PrimariaStartupPlugin) => {
37
37
  const finalPlugins = internalPlugins.concat(plugins || []);
38
38
  bootstrappedPlugins = (await pluginBootstrapper(finalPlugins, primariaApiFactory)) as BootstrappedPlugin<PrimariaApi>[];
39
- setTimeout(() => {
40
- handleStartupPlugin(bootstrappedPlugins as PrimariaBootstrappedPlugin[], startup);
41
- }, 500);
39
+ handleStartupPlugin(bootstrappedPlugins as PrimariaBootstrappedPlugin[], startup);
42
40
  };
43
41
 
44
42
  export const handleStartupPlugin = (plugins: PrimariaBootstrappedPlugin[], startupPlugin?: PrimariaStartupPlugin) => {