Skip to content

Commit 5acda8d

Browse files
committed
fix: delivery dates condition
1 parent 62eb65f commit 5acda8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/js/src/ui/components/Notification/DefaultNotification.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ export const DefaultNotification = (props: DefaultNotificationProps) => {
470470
<>
471471
<Show when={deliveredAt()} fallback={<>{createdAt()}</>}>
472472
{(deliveredAt) => (
473-
<Show when={deliveredAt().length > 2}>
473+
<Show when={deliveredAt().length >= 2}>
474474
{' '}
475475
<For each={deliveredAt().slice(-2)}>
476476
{(date, index) => (

0 commit comments

Comments
 (0)