1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-22 11:45:59 +01: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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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