Skip to content

Commit a5eedb6

Browse files
fix: my ocd
1 parent b06d58b commit a5eedb6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/UpcomingPaper.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export default function PaperCard({ subject, slots }: PaperCardProps) {
105105

106106
{
107107
<div className="mt-4 flex flex-wrap gap-2 font-play">
108-
{slots?.map((slotValue, index) => (
108+
{[...slots].sort().map((slotValue, index) => (
109109
<Capsule key={index}>{slotValue}</Capsule>
110110
))}
111111
</div>

0 commit comments

Comments
 (0)