Set key on debug view

This commit is contained in:
Jackson Harper 2024-01-02 18:16:26 +08:00
parent fe9cf0fc89
commit d6982ae1a4

View file

@ -197,9 +197,10 @@ export default function Debug(): JSX.Element {
width: '100%',
}}
>
{sortedAttributes.map((attribute, i) => {
{sortedAttributes.map((attribute, idx) => {
return (
<HStack
key={`attribute-${idx}`}
alignment="start"
distribution="start"
css={{ padding: '10px', border: '1px solid black' }}