fix: unneeded margin of zap receipt

This commit is contained in:
Shusui MOYATANI
2024-01-06 18:59:40 +09:00
parent 8ab03273c7
commit ecf20f6cd2

View File

@@ -105,11 +105,11 @@ const ZapReceipt: Component<ZapReceiptProps> = (props) => {
{event().description().content}
</div>
</Show>
<div class="notification-event py-1">
<Show when={event().zappedEventId() != null}>
<Show when={event().zappedEventId() != null}>
<div class="notification-event py-1">
<EventDisplayById eventId={event().zappedEventId()} />
</Show>
</div>
</div>
</Show>
</Show>
);
};