diff --git a/src/pages/Lineup.tsx b/src/pages/Lineup.tsx index 09cca70..ab6787d 100644 --- a/src/pages/Lineup.tsx +++ b/src/pages/Lineup.tsx @@ -158,12 +158,15 @@ const Lineup: React.FC = () => {

防守阵容

{lineup.defenseHeroInfos.map((hero, index) => ( -
+
{hero.heroCode} +
+ {hero.heroName} +
))}
@@ -174,12 +177,15 @@ const Lineup: React.FC = () => {

进攻阵容

{lineup.attackHeroInfos.map((hero, index) => ( -
+
{hero.heroCode} +
+ {hero.heroName} +
))}