diff --git a/src/migrations/migration-wrapper.ts b/src/migrations/migration-wrapper.ts index 8ced961e4d..39015b81fb 100644 --- a/src/migrations/migration-wrapper.ts +++ b/src/migrations/migration-wrapper.ts @@ -13,7 +13,7 @@ function infoLog(...args: any[]) { export function migration({ version, run }: MigrationOpts) { return { - [version]: async (storeConfig: Config) => { + [version]: (storeConfig: Config) => { infoLog(`STORE MIGRATION (${storeConfig.path}): ${version}`,); run(storeConfig, infoLog); }