Skip to content

Commit 09e5097

Browse files
committed
[benc/parser-todos] Fix lint
1 parent 9265755 commit 09e5097

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/perseus-editor/src/widgets/interactive-graph-editor/interactive-graph-editor.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -869,7 +869,10 @@ class InteractiveGraphEditor extends React.Component<Props> {
869869
this.props.correct.match || "exact"
870870
}
871871
onChange={(newValue) => {
872-
invariant(this.props.correct.type === "angle", `Expected graph type to be angle, but got ${this.props.correct.type}`)
872+
invariant(
873+
this.props.correct.type === "angle",
874+
`Expected graph type to be angle, but got ${this.props.correct.type}`,
875+
);
873876
this.props.onChange({
874877
correct: {
875878
...this.props.correct,

0 commit comments

Comments
 (0)