alpha
Login
or
Join now
nandi.uk
/
semble
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
feat: back button on profile header
author
pdelfan
date
3 months ago
(Apr 4, 2026, 2:14 PM -0700)
commit
220186a7
220186a7a0dbdfaf2efb7d2d52ea847b2a744df9
parent
211bf2be
211bf2be5bfdce7ce773b4b9cdc44439259b210d
+4
-2
1 changed file
Expand all
Collapse all
Unified
Split
src
webapp
features
profile
components
profileHeader
MinimalProfileHeader.tsx
+4
-2
src/webapp/features/profile/components/profileHeader/MinimalProfileHeader.tsx
View file
Reviewed
···
1
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
23
-
<Group justify="space-between" wrap="nowrap">
24
24
+
<Group justify="space-between" align="center" wrap="nowrap">
24
25
<Group gap={'sm'} wrap="nowrap">
26
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
41
-
<Group gap={'xs'}>
43
43
+
<Group gap={'xs'} wrap="nowrap">
42
44
<ActionIcon
43
45
component={Link}
44
46
href={`/search/cards?handle=${props.handle}`}