Skip to content

Commit

Permalink
fix spread error
Browse files Browse the repository at this point in the history
  • Loading branch information
LimberHope committed Jun 12, 2024
1 parent ef7b556 commit d59ec36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/elements/CommentaryBox/CommentaryBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ const CommentaryBox = (props: CommentaryBoxProps) => {
<div className="flex flex-1 justify-between gap-4">
<div className="flex flex-wrap gap-2">
<When condition={files.length > 0}>
{...files.map((file: any) => (
{files.map((file: any) => (
<div
key={file.name}
className="flex items-baseline justify-between gap-2 rounded-xl bg-neutral-150 px-2 py-1"
Expand Down

0 comments on commit d59ec36

Please sign in to comment.