Commit a856f58b authored by Chunchi Che's avatar Chunchi Che

fix small

parent ce2aefea
...@@ -20,7 +20,7 @@ const Magics = () => { ...@@ -20,7 +20,7 @@ const Magics = () => {
return ( return (
<> <>
{magics.map((magic) => { {magics.map((magic) => {
return <CMagic state={magic} />; return <CMagic state={magic} key={magic.sequence} />;
})} })}
</> </>
); );
......
...@@ -106,6 +106,7 @@ const ExtraMonsters = () => { ...@@ -106,6 +106,7 @@ const ExtraMonsters = () => {
{xs.map((x, idx) => ( {xs.map((x, idx) => (
<plane <plane
name={`extra-monster-${idx}`} name={`extra-monster-${idx}`}
key={idx}
position={position(x)} position={position(x)}
rotation={rotation} rotation={rotation}
> >
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment