Skip to content

Commit

Permalink
fix: weapon stories order
Browse files Browse the repository at this point in the history
  • Loading branch information
KeziahMoselle committed May 26, 2023
1 parent 328f546 commit e80e602
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/WeaponInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ export default function WeaponInfo({
key={selectedWeapon.weapon_id}
className="flex flex-col gap-4 bg-grey-dark bordered relative p-4"
>
{selectedWeapon.weapon_story_link.map((story) => (
{selectedWeapon.weapon_story_link.reverse().map((story) => (
<div
key={story.weapon_story_id}
className="text-beige-text whitespace-pre-wrap text-base mt-2 mb-4"
Expand Down

0 comments on commit e80e602

Please sign in to comment.