Skip to content

Commit 09cb4c0

Browse files
authored
Update page.tsx
1 parent 4e68fe2 commit 09cb4c0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/changelog/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ export default function ChangelogPage() {
6464
{/* The Timeline Line */}
6565
<div className="absolute left-[11px] md:left-[155px] top-2 bottom-0 w-px bg-border hidden sm:block" />
6666

67-
{sortedEntries.map((entry, idx) => (
68-
<article key={idx} className="relative grid grid-cols-1 md:grid-cols-[140px_1fr] gap-8 md:gap-12 pb-16 border-b border-border last:border-0">
67+
{sortedEntries.map((entry) => (
68+
<article key={entry.timeStamp} className="relative grid grid-cols-1 md:grid-cols-[140px_1fr] gap-8 md:gap-12 pb-16 border-b border-border last:border-0">
6969

7070
{/* Left Column: Date & Version */}
7171
<div className="md:sticky md:top-24 h-fit">
@@ -129,4 +129,4 @@ export default function ChangelogPage() {
129129
<FooterSmall />
130130
</>
131131
);
132-
}
132+
}

0 commit comments

Comments
 (0)