Skip to content

Commit

Permalink
Fix browser action hover message on disabled proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
ruihildt committed Dec 4, 2023
1 parent 295f536 commit 69720a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers/browserAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const updateTabProxyBadge = async (tabId: number, globalProxyDetails: ProxyDetai
browser.browserAction.setTitle({ tabId, title: tooltip });
setTabExtBadge(tabId);
} else {
browser.pageAction.setTitle({ tabId, title: 'Proxy not in use' });
browser.browserAction.setTitle({ tabId, title: 'Proxy not in use' });
setTabExtBadge(tabId, false);
}
};
Expand Down

0 comments on commit 69720a8

Please sign in to comment.