Skip to content

Commit

Permalink
run lint
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoMorenoSirius committed Jun 21, 2024
1 parent 3aad6fd commit 059e284
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions apps/mocksi-lite/content/ContentApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,12 @@ function ShadowContentApp({ isOpen, email }: ContentProps) {
}, []);

const onChangeState = (newState: RecordingState) => {
chrome.storage.local.set({ [MOCKSI_RECORDING_STATE]: newState }).then(() => {
setState(newState);
setRootPosition(newState);
});
chrome.storage.local
.set({ [MOCKSI_RECORDING_STATE]: newState })
.then(() => {
setState(newState);
setRootPosition(newState);
});
};

if (!isDialogOpen) {
Expand Down

0 comments on commit 059e284

Please sign in to comment.