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

add warning comment

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2021-03-23 10:24:55 -04:00
parent 86815ae9f5
commit bdbfe579d3

View File

@ -82,6 +82,10 @@ export class UserStore extends BaseStore<UserStoreModel> {
} }
async load(): Promise<void> { async load(): Promise<void> {
/**
* This has to be here before the call to `new Config` in `super.load()`
* as we have to make sure that file is in the expected place for that call
*/
await fileNameMigration(); await fileNameMigration();
return super.load(); return super.load();