Skip to content

Commit 1aab41f

Browse files
committed
fix(Schedule): optionalなため、| undefinedを削除
1 parent 758aa32 commit 1aab41f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

2025/src/components/Schedule/TimeTable.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ type Props = {
88
start_at: Date;
99
end_at: Date;
1010
title: string;
11-
session_id?: string | undefined;
12-
speaker_name?: string | undefined;
11+
session_id?: string;
12+
speaker_name?: string;
1313
};
1414
1515
const { title, start_at, end_at, speaker_name } = Astro.props;

0 commit comments

Comments
 (0)