1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 14:53:33 +00:00

Add Missing await (#7788)

This commit is contained in:
Justin Baur
2024-02-02 09:06:03 -05:00
committed by GitHub
parent 38d1b26784
commit 5e710b45b0

View File

@@ -36,7 +36,7 @@ export async function migrate(
await storageService.save("stateVersion", CURRENT_VERSION); await storageService.save("stateVersion", CURRENT_VERSION);
return; return;
} }
MigrationBuilder.create() await MigrationBuilder.create()
.with(MinVersionMigrator) .with(MinVersionMigrator)
.with(FixPremiumMigrator, 2, 3) .with(FixPremiumMigrator, 2, 3)
.with(RemoveEverBeenUnlockedMigrator, 3, 4) .with(RemoveEverBeenUnlockedMigrator, 3, 4)