diff --git a/front/views/SongLobbyView.tsx b/front/views/SongLobbyView.tsx index 97d811a..ef699ff 100644 --- a/front/views/SongLobbyView.tsx +++ b/front/views/SongLobbyView.tsx @@ -35,12 +35,12 @@ const SongLobbyView = () => { - + {songQuery.data?.name} - {songQuery.data!.title} + {songQuery.data!.name} `${level} - ${ chaptersQuery.data!.reduce((a, b) => a + b.difficulty, 0) / chaptersQuery.data!.length }`} @@ -81,7 +81,7 @@ const SongLobbyView = () => { { !chaptersQuery.isLoading && }> { chaptersQuery.data!.map((chapter) => - + {chapter.name} {`${translate('level')} ${chapter.difficulty} - ${formatDuration((chapter.end - chapter.start) * 1000)}`}