feat: do not obscure join room buttons with tooltip

This commit is contained in:
Jeremy Kahn 2023-03-08 09:09:16 -06:00
parent 35c3f2fee3
commit 0fc4ad040b

View File

@ -64,9 +64,8 @@ export function Home({ userId }: HomeProps) {
</PeerNameDisplay> </PeerNameDisplay>
</Typography> </Typography>
<FormControl fullWidth> <FormControl fullWidth>
<Tooltip title="Default room names are randomly generated client-side">
<TextField <TextField
label="Room name" label="Room name (generated client-side)"
variant="outlined" variant="outlined"
value={roomName} value={roomName}
onChange={handleRoomNameChange} onChange={handleRoomNameChange}
@ -84,7 +83,6 @@ export function Home({ userId }: HomeProps) {
}} }}
size="medium" size="medium"
/> />
</Tooltip>
</FormControl> </FormControl>
<Box <Box
sx={{ sx={{