Skip to content

Commit

Permalink
chore(prettier): prettier formating
Browse files Browse the repository at this point in the history
  • Loading branch information
VadymBezpalko committed Sep 18, 2024
1 parent a3e2af2 commit 816756b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ vitest.mock('react-virtuoso', () => {
function Virtuoso(props: VirtuosoProps<unknown, unknown>) {
return (
<>
{props.data?.map((value, index) =>
props.itemContent?.(index, value, undefined)
{props.data?.map(
(value, index) => props.itemContent?.(index, value, undefined)
)}
</>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ vitest.mock('react-virtuoso', () => {
function Virtuoso(props: VirtuosoProps<unknown, unknown>) {
return (
<>
{props.data?.map((value, index) =>
props.itemContent?.(index, value, undefined)
{props.data?.map(
(value, index) => props.itemContent?.(index, value, undefined)
)}
</>
);
Expand Down

0 comments on commit 816756b

Please sign in to comment.