diff --git a/src/app/components/Content.svelte b/src/app/components/Content.svelte index 64cbbb19e..b4b35991e 100644 --- a/src/app/components/Content.svelte +++ b/src/app/components/Content.svelte @@ -152,8 +152,8 @@ {:else if isEvent(parsed) || isAddress(parsed)} {#if isBlock(i)} - {#snippet noteContent({event}: {event: TrustedEvent})} - + {#snippet noteContent({event, minimal}: {event: TrustedEvent; minimal: boolean})} + {/snippet} {:else} diff --git a/src/app/components/ContentQuote.svelte b/src/app/components/ContentQuote.svelte index 07afde280..d01c69ed2 100644 --- a/src/app/components/ContentQuote.svelte +++ b/src/app/components/ContentQuote.svelte @@ -96,7 +96,7 @@ {#if $quote} - {@render noteContent({event: $quote})} + {@render noteContent({event: $quote, minimal})} {:else} diff --git a/src/lib/components/EmojiButton.svelte b/src/lib/components/EmojiButton.svelte index 9108c22f7..4e931f2f3 100644 --- a/src/lib/components/EmojiButton.svelte +++ b/src/lib/components/EmojiButton.svelte @@ -1,4 +1,5 @@