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
fix: missing notification item key
author
Pouria Delfanazari
date
2 months ago
(May 20, 2026, 5:06 PM -0700)
commit
e1ca6a3c
e1ca6a3c05bf400f6195fbb0dd7235f2b7e6cc11
parent
84341901
84341901ec644437bd8d00ae6d0315aa7440b8ca
+1
-2
1 changed file
Expand all
Collapse all
Unified
Split
src
webapp
features
notifications
components
notificationItem
NotificationItem.tsx
+1
-2
src/webapp/features/notifications/components/notificationItem/NotificationItem.tsx
View file
Reviewed
···
84
84
<Scroller>
85
85
<Group gap="xs" wrap="nowrap">
86
86
{notification.item.collections.map((collection) => (
87
87
-
<Box miw={'100%'} w={'100%'}>
87
87
+
<Box key={collection.id} miw={'100%'} w={'100%'}>
88
88
<CollectionCard
89
89
-
key={collection.id}
90
89
collection={collection}
91
90
size="compact"
92
91
/>