Skip to content

Commit 712324b

Browse files
committed
fix: missing await
1 parent 88b1888 commit 712324b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/extension/src/libs/updates-state

packages/extension/src/libs/updates-state/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class UpdatesState {
1414
}
1515

1616
async getState(): Promise<IState> {
17-
const state = this.storage.get(StorageKeys.updatesInfo);
17+
const state = await this.storage.get(StorageKeys.updatesInfo);
1818
if (!state) {
1919
const newState: IState = {
2020
lastVersionViewed: '',

0 commit comments

Comments
 (0)