You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Small bug due to a missing / between the URL and the path Unchecked runtime.lastError: Invalid url: "http://localhost:3000overview".. So far, I have been facing that problem only using a local node.
This should be fixable by handling the / in here, by replacing chrome.tabs.create({ url: '${getNetworkDashboardLink()}overview' }) to chrome.tabs.create({ url: '${getNetworkDashboardLink()}/overview' })
Thanks! :)
The text was updated successfully, but these errors were encountered:
Small bug due to a missing
/
between the URL and the pathUnchecked runtime.lastError: Invalid url: "http://localhost:3000overview".
. So far, I have been facing that problem only using a local node.This should be fixable by handling the
/
in here, by replacingchrome.tabs.create({ url: '${getNetworkDashboardLink()}overview' })
tochrome.tabs.create({ url: '${getNetworkDashboardLink()}/overview' })
Thanks! :)
The text was updated successfully, but these errors were encountered: