feat: Updated src/background.js

This commit is contained in:
sweep-ai[bot]
2023-11-15 06:47:42 +00:00
committed by GitHub
parent 6ac861a424
commit e28dd7de52
+2 -2
View File
@@ -55,7 +55,7 @@ export const readData = () => {
});
};
function ReloadSEQTAPages() {
function reloadSeqtaPages() {
chrome.tabs.query({}, function (tabs) {
for (let tab of tabs) {
if (tab.title.includes('SEQTA Learn')) {
@@ -93,7 +93,7 @@ const handleAddPermissions = () => {
chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {
switch (request.type) {
case 'reloadTabs':
ReloadSEQTAPages();
reloadSeqtaPages();
break;
case 'currentTab':