Skip to content

Commit e6a5f43

Browse files
Merge pull request #621 from Himenon/feat/2025-11-11
feat: スポンサーセッションの順番入れ替え
2 parents 3e1edf5 + b83ead1 commit e6a5f43

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

2025/src/constants/schedule.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,24 +22,24 @@ export type ScheduledSession = {
2222
startTime: string;
2323
endTime: string;
2424
} & (
25-
| {
25+
| {
2626
kind: "talk";
2727
talk: Talk;
2828
}
29-
| {
29+
| {
3030
kind: "streaming";
3131
talk: Talk;
3232
}
33-
| {
33+
| {
3434
kind:
35-
| "reception"
36-
| "opening"
37-
| "closed"
38-
| "break"
39-
| "closing"
40-
| "networking";
35+
| "reception"
36+
| "opening"
37+
| "closed"
38+
| "break"
39+
| "closing"
40+
| "networking";
4141
}
42-
);
42+
);
4343
export type TalkSession = Extract<ScheduledSession, { kind: "talk" }>;
4444

4545
export const SCHEDULE: ScheduledSession[] = [
@@ -266,7 +266,7 @@ export const SCHEDULE: ScheduledSession[] = [
266266
},
267267
{
268268
kind: "talk",
269-
talk: TALKS_BY_SLUG["denkiyagi-sponsor-session"],
269+
talk: TALKS_BY_SLUG["cloudinary-sponsor-session"],
270270
track: "D",
271271
day: "1",
272272
startTime: "13:00",
@@ -513,7 +513,7 @@ export const SCHEDULE: ScheduledSession[] = [
513513
},
514514
{
515515
kind: "talk",
516-
talk: TALKS_BY_SLUG["cloudinary-sponsor-session"],
516+
talk: TALKS_BY_SLUG["denkiyagi-sponsor-session"],
517517
track: "C",
518518
day: "1",
519519
startTime: "17:00",

0 commit comments

Comments
 (0)