Skip to content

Commit

Permalink
fix case block
Browse files Browse the repository at this point in the history
  • Loading branch information
angelo-v committed Apr 13, 2022
1 parent 73fdedd commit 14abd5e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ const chromeMessageListener = new ChromeMessageListener();

chrome.runtime.onMessage.addListener(function (request, sender, sendResponse) {
switch (request.type) {
case MessageType.ACTIVATE:
case MessageType.ACTIVATE: {
const { providerUrl, ...sessionInfo } = request.payload;
renderApp(sessionInfo, providerUrl);
break;
}
}
sendResponse();
});
Expand Down

0 comments on commit 14abd5e

Please sign in to comment.