1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

removing missed async

Signed-off-by: Sebastian Malton <smalton@mirantis.com>
This commit is contained in:
Sebastian Malton 2020-08-18 13:13:30 -04:00
parent e5a7f9fa39
commit 09f2f5e877

View File

@ -13,7 +13,7 @@ function infoLog(...args: any[]) {
export function migration<S = any>({ version, run }: MigrationOpts) {
return {
[version]: async (storeConfig: Config<S>) => {
[version]: (storeConfig: Config<S>) => {
infoLog(`STORE MIGRATION (${storeConfig.path}): ${version}`,);
run(storeConfig, infoLog);
}