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
Merge branch 'development'
author
pdelfan
date
4 months ago
(Mar 3, 2026, 12:57 PM -0800)
commit
48759ae2
48759ae2cf6046ab517548be0664aa7782bcd3a9
parent
f58716c8
f58716c8b8ac9eff5c6b68bedc3335d276c33014
+2
-1
2 changed files
Expand all
Collapse all
Unified
Split
src
webapp
features
semble
components
urlAddedBySummary
Skeleton.UrlAddedBySummary.tsx
UrlAddedBySummary.tsx
+1
-1
src/webapp/features/semble/components/urlAddedBySummary/Skeleton.UrlAddedBySummary.tsx
View file
Reviewed
···
3
3
export default function UrlAddedBySummarySkeleton() {
4
4
return (
5
5
<Group gap={'xs'}>
6
6
-
<Avatar src={null} />
6
6
+
<Avatar src={null} size={'sm'} />
7
7
<Skeleton w={'30%'} h={14} />
8
8
</Group>
9
9
);
+1
src/webapp/features/semble/components/urlAddedBySummary/UrlAddedBySummary.tsx
View file
Reviewed
···
29
29
src={p.user.avatarUrl?.replace('avatar', 'avatar_thumbnail')}
30
30
alt={p.user.handle}
31
31
name={p.user.handle}
32
32
+
size={'sm'}
32
33
/>
33
34
))}
34
35
</AvatarGroup>