chore(extension): connected badge while loading (#899)

This commit is contained in:
Yury Semikhatsky
2025-08-15 13:44:17 -07:00
committed by GitHub
parent 91d5d24cab
commit c559243ef6

View File

@@ -193,7 +193,7 @@ class TabShareExtension {
}
private _onTabUpdated(tabId: number, changeInfo: chrome.tabs.TabChangeInfo, tab: chrome.tabs.Tab) {
if (changeInfo.status === 'complete' && this._connectedTabId === tabId)
if (this._connectedTabId === tabId)
void this._setConnectedTabId(tabId);
}