Skip to content

Commit

Permalink
Fix oopsie, incorrect context menu build() call
Browse files Browse the repository at this point in the history
  • Loading branch information
tfedor committed Sep 15, 2024
1 parent 007a63b commit c085874
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/Background/Modules/ContextMenu/ContextMenu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,6 @@ export default class ContextMenu {
public static async update(): Promise<void> {
await SettingsStore.init();
await browser.contextMenus.removeAll();
return this.build();
return ContextMenu.build();
}
}

0 comments on commit c085874

Please sign in to comment.