Skip to content

Commit

Permalink
fix(characters): error on characters views
Browse files Browse the repository at this point in the history
  • Loading branch information
KeziahMoselle committed Jun 30, 2023
1 parent 4ecda0a commit 99ac544
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/pages/costumes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,7 @@ export function CostumesGrid({
className="group"
imgClasses="transform transition-transform ease-out-cubic group-hover:scale-110"
weapon={cost.weapon}
attribute={costume.attribute}
attribute={cost.attribute}
>
<Link
href={`/characters/${cost.character.slug}/${cost.slug}`}
Expand Down Expand Up @@ -950,7 +950,7 @@ export function CostumesGrid({
rarity={cost.rarity}
weaponType={cost?.weapon_type}
isDark={cost?.is_ex_costume}
attribute={costume.attribute}
attribute={cost.attribute}
/>
<p className="text-center text-sm mb-0 leading-none">
{cost.is_ex_costume && (
Expand Down

0 comments on commit 99ac544

Please sign in to comment.