We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a367355 commit 81c16a2Copy full SHA for 81c16a2
src/app/conf/_components/schedule/schedule-list.tsx
@@ -145,12 +145,13 @@ export function ScheduleList({
145
</div>
146
) : (
147
<>
148
- <div className="flex space-x-4">
149
- {Object.keys(sessionsState).map((date, index) => (
+ <div className="flex space-x-4 mb-4">
+ {/* Skip registeration prior day for graphql conf 2024 */}
150
+ {Object.keys(sessionsState).slice(year === '2024' ? 1 : 0).map((date, index) => (
151
<a
- href={`#day-${index + 1}`}
152
+ href={`#day-${(year === '2024' ? 1: 0) + index + 1}`}
153
key={date}
- className={"text-gray-800 text-xs"}
154
+ className={"text-gray-800 text-xs hover:underline"}
155
>
156
Day {index + 1}
157
</a>
0 commit comments