Skip to content

Commit fb2f21c

Browse files
committed
[benc/remove-json-mode-toggle] Fix lint
1 parent dbf87b3 commit fb2f21c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/perseus-editor/src/__docs__/editor-page-with-storybook-preview.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ function EditorPageWithStorybookPreview(props: Props) {
5555
<input
5656
type="checkbox"
5757
checked={jsonMode}
58-
onChange={(event) => setJsonMode(event.currentTarget.checked)}
58+
onChange={(event) =>
59+
setJsonMode(event.currentTarget.checked)
60+
}
5961
/>
6062
</label>
6163
<EditorPage

0 commit comments

Comments
 (0)