fix searchbar bug
4 fils de conversation non résolus
4 fils de conversation non résolus
Rapports de requête de fusion
Activité
Filtrer l'activité
38 const lgUp = useResponsive("up", "lg"); 39 39 40 const [searchQuery, setSearchQuery] = useState(''); 40 const [searchQuery, setSearchQuery] = useState(""); 41 41 42 42 const navData = useNavData(); 43 43 44 44 const handleClose = useCallback(() => { 45 45 search.onFalse(); 46 setSearchQuery(''); 46 setSearchQuery(""); 47 47 }, [search]); 48 48 49 49 const handleKeyDown = (event: KeyboardEvent) => { 50 if (event.key === 'k' && event.metaKey) { 50 if (event.key === "k" && event.metaKey) { 1 import Box from '@mui/material/Box'; 2 import Stack from '@mui/material/Stack'; 3 import Button from '@mui/material/Button'; 4 import Avatar from '@mui/material/Avatar'; 5 import Typography from '@mui/material/Typography'; 1 // import Box from '@mui/material/Box'; 16 // const { user } = useMockedUser(); 17 17 18 return ( 19 <Stack 20 sx={{ 21 px: 2, 22 py: 5, 23 textAlign: 'center', 24 }} 25 > 26 <Stack alignItems="center"> 27 <Box sx={{ position: 'relative' }}> 28 <Avatar src={user?.photoURL} alt={user?.displayName} sx={{ width: 48, height: 48 }}> 29 {user?.displayName?.charAt(0).toUpperCase()} 30 </Avatar> 18 // return (
Veuillez vous inscrire ou vous connecter pour répondre