Skip to content

Commit

Permalink
Refactor variable name for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
kabir-afk committed Jun 5, 2024
1 parent c3f56e2 commit 1483560
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sw.js
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
if (message.command === "getBackground") {
// persisted the state inside chrome.storage.local but will get to that later
console.log(state);
const a = {state,params,uiLanguages,records,signLanguages};
sendResponse(a);
const extensionData = {state,params,uiLanguages,records,signLanguages};
sendResponse(extensionData);
}
});

0 comments on commit 1483560

Please sign in to comment.