Fix missing key attr; used a dummy key because it is decorative

This commit is contained in:
Willian Mitsuda 2021-07-12 17:47:37 -03:00
parent 931629d16e
commit 613c49b1ad
1 changed files with 1 additions and 0 deletions

View File

@ -14,6 +14,7 @@ const HexValue: React.FC<HexValueProps> = ({ value }) => {
<> <>
{shards.map((s, i) => ( {shards.map((s, i) => (
<span <span
key={i}
className={`font-hash ${ className={`font-hash ${
i % 2 === 0 ? "text-black" : "text-gray-400" i % 2 === 0 ? "text-black" : "text-gray-400"
}`} }`}