From 0b8d8c81b92adfc49c5936d395520fe521d74570 Mon Sep 17 00:00:00 2001 From: go0p Date: Wed, 15 May 2024 14:35:35 +0800 Subject: [PATCH] format --- src/components/EvalInTab.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/EvalInTab.tsx b/src/components/EvalInTab.tsx index f473627..8800ce7 100644 --- a/src/components/EvalInTab.tsx +++ b/src/components/EvalInTab.tsx @@ -43,7 +43,10 @@ export const EvalInTab: React.FC = () => { await chrome.runtime.sendMessage({ action: wsc.ActionType.INJECT_SCRIPT, tabId: tab.id, - value: {mode: "CONTENT_EVAL_CODE", code: code}, + value: { + mode: "CONTENT_EVAL_CODE", + code: code, + }, }); } catch (error) { } @@ -59,7 +62,7 @@ export const EvalInTab: React.FC = () => {