Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
aarkue committed May 8, 2024
1 parent fb3e192 commit f0fcbd1
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,9 @@ export default function VisualEditorOuter() {
console.log(json5.stringify(prevDataRef.current));
localStorage.setItem(
LOCALSTORAGE_SAVE_KEY_DATA,
json5.stringify(prevDataRef.current.map(x => ({...x, violations: undefined}))),
json5.stringify(
prevDataRef.current.map((x) => ({ ...x, violations: undefined })),
),
);
}
localStorage.setItem(
Expand Down

0 comments on commit f0fcbd1

Please sign in to comment.