diff --git a/src/components/RoundCheckIn/CheckInPage.tsx b/src/components/RoundCheckIn/CheckInPage.tsx index 92d4be2..cc37f99 100644 --- a/src/components/RoundCheckIn/CheckInPage.tsx +++ b/src/components/RoundCheckIn/CheckInPage.tsx @@ -1,5 +1,5 @@ import Icon from '@components/Icon'; -import { MatchPlayerScoreInfos } from '@components/RoundCheckIn'; +import { MatchMessages, MatchPlayerScoreInfos } from '@components/RoundCheckIn'; import CallAdminChat from '@components/RoundCheckIn/CallAdminChat'; import styled from '@emotion/styled'; import { Client } from '@stomp/stompjs'; @@ -9,9 +9,18 @@ interface CheckInPageProps { client: Client | undefined; matchId: string; players: MatchPlayerScoreInfos[]; + matchMessage: MatchMessages[]; + requestUser: number; } -const CheckInPage = ({ ParticipantCheckin, client, matchId, players }: CheckInPageProps) => { +const CheckInPage = ({ + ParticipantCheckin, + client, + matchId, + players, + matchMessage, + requestUser, +}: CheckInPageProps) => { return ( @@ -24,7 +33,13 @@ const CheckInPage = ({ ParticipantCheckin, client, matchId, players }: CheckInPa - + );