Skip to content

Commit

Permalink
style: Automated code fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eea-jenkins committed Apr 3, 2024
1 parent 1fdda90 commit 7cda38c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/Blocks/DataTable/Edit.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ import { getSchema } from './schema';
import { View } from './View';

const Edit = (props) => {
const schema = useMemo(() => getSchema(props.provider_data), [
props.provider_data,
]);
const schema = useMemo(
() => getSchema(props.provider_data),
[props.provider_data],
);

return (
<>
Expand Down

0 comments on commit 7cda38c

Please sign in to comment.