Skip to content

Commit

Permalink
Remove unnecessary await
Browse files Browse the repository at this point in the history
  • Loading branch information
franciscodelahoz committed Apr 14, 2024
1 parent 4a1dc92 commit bc27ad9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/tools/color-palettes-manager.tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class ColorPalettesManager {
public async initializeManager(): Promise<void> {
await this.customPaletteDBTool.openDatabase();

await this.loadDefaultPalettes();
this.loadDefaultPalettes();
await this.loadCustomPalettes();

this.currentSelectedPalette = [ ...this.colorPalettesStored[defaultColorPaletteId] ];
Expand Down

0 comments on commit bc27ad9

Please sign in to comment.