This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

feat: back button on profile header

+4 -2
+4 -2
src/webapp/features/profile/components/profileHeader/MinimalProfileHeader.tsx
··· 1 + import BackButton from '@/components/navigation/backButton/BackButton'; 1 2 import NavbarToggle from '@/components/navigation/NavbarToggle'; 2 3 import { 3 4 Group, ··· 20 21 export default function MinimalProfileHeader(props: Props) { 21 22 return ( 22 23 <Container p={'xs'} size={'xl'} mx={0}> 23 - <Group justify="space-between" wrap="nowrap"> 24 + <Group justify="space-between" align="center" wrap="nowrap"> 24 25 <Group gap={'sm'} wrap="nowrap"> 26 + <BackButton /> 25 27 <Avatar 26 28 src={props.avatarUrl?.replace('avatar', 'avatar_thumbnail')} 27 29 alt={`${props.name}'s avatar`} ··· 38 40 </Stack> 39 41 </Group> 40 42 41 - <Group gap={'xs'}> 43 + <Group gap={'xs'} wrap="nowrap"> 42 44 <ActionIcon 43 45 component={Link} 44 46 href={`/search/cards?handle=${props.handle}`}