Skip to content

Commit 8049a15

Browse files
committed
UI Bug
1 parent 074c3dc commit 8049a15

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/routes/match/waiting-room/waiting.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ export const WaitingRoom = ({ socketPort, setIsModalOpen }: IWaitingRoomProps) =
174174
<div className='flex flex-col items-center justify-center'>
175175
{uiState.icon}
176176
{uiState.description.startsWith('RoomId') ? (
177-
<p className='flex flex-col gap-1'>
177+
<div className='flex flex-col gap-1'>
178178
<div className='flex flex-col gap-0'>
179179
<label className='text-lg'>Room Id:</label>
180180
<span className='text-md max-w-[400px] truncate text-balance font-mono'>
@@ -187,7 +187,7 @@ export const WaitingRoom = ({ socketPort, setIsModalOpen }: IWaitingRoomProps) =
187187
{uiState.description.split('\nQuestionId: ')[1]}
188188
</span>
189189
</div>
190-
</p>
190+
</div>
191191
) : (
192192
<p className='mt-4 whitespace-pre-wrap text-lg'>{uiState.description}</p>
193193
)}

0 commit comments

Comments
 (0)