Skip to content

Commit

Permalink
Fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
joefreeman committed Mar 14, 2024
1 parent 87d4a58 commit 6f4e0e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/examples/src/examples/arrays-with-detail.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const actions = [
label: 'Toggle readonly',
apply: (props: StateProps) => {
return { ...props, readonly: !props.readonly };
}
},
}
];

Expand Down
2 changes: 1 addition & 1 deletion packages/examples/src/examples/arrays.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ const actions = [
label: 'Toggle readonly',
apply: (props: StateProps) => {
return { ...props, readonly: !props.readonly };
}
},
}
];

Expand Down

0 comments on commit 6f4e0e4

Please sign in to comment.