Skip to content

Commit

Permalink
fix: rename tuple to array
Browse files Browse the repository at this point in the history
  • Loading branch information
ByteAtATime committed Jun 1, 2024
1 parent 2183474 commit 35adf37
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export const ObjectFieldDisplay = ({
const ArrayDisplay = ({ value, size }: { value: DisplayContent[]; size: ResultFontSize }) => {
return (
<div className="flex flex-col gap-y-1">
tuple
array
{value.map((v, i) => (
<ObjectFieldDisplay key={i} name={`[${i}]`} value={v} size={size} />
))}
Expand Down

0 comments on commit 35adf37

Please sign in to comment.