Fix missing key attr; used a dummy key because it is decorative
This commit is contained in:
parent
931629d16e
commit
613c49b1ad
|
@ -14,6 +14,7 @@ const HexValue: React.FC<HexValueProps> = ({ value }) => {
|
|||
<>
|
||||
{shards.map((s, i) => (
|
||||
<span
|
||||
key={i}
|
||||
className={`font-hash ${
|
||||
i % 2 === 0 ? "text-black" : "text-gray-400"
|
||||
}`}
|
||||
|
|
Loading…
Reference in New Issue