Skip to content
This repository was archived by the owner on Aug 4, 2023. It is now read-only.

Commit a8aad61

Browse files
fixed undefined map issue in airing schedule
1 parent 863fb96 commit a8aad61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Components/AiringSchedule.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function AiringSchedule(props) {
99
</div>
1010

1111
<div className="anime-airing">
12-
{airingList.map((airingSchedule) => {
12+
{airingList?.map((airingSchedule) => {
1313
const { id, title, episode, airingAt } = airingSchedule;
1414

1515
return (

0 commit comments

Comments
 (0)