diff --git a/src/lib/components/EventDetails.svelte b/src/lib/components/EventDetails.svelte index 7951ed4..fcec179 100644 --- a/src/lib/components/EventDetails.svelte +++ b/src/lib/components/EventDetails.svelte @@ -9,6 +9,7 @@ import { getMatchingTags } from '$lib/utils/nostrUtils'; import ProfileHeader from "$components/cards/ProfileHeader.svelte"; import { getUserMetadata } from "$lib/utils/nostrUtils"; + import CopyToClipboard from '$lib/components/util/CopyToClipboard.svelte'; const { event, profile = null, searchValue = null } = $props<{ event: NDKEvent; @@ -186,15 +187,18 @@ {/if} -
+
Show Raw Event JSON +
+ +
-      {JSON.stringify(event.rawEvent(), null, 2)}
+{JSON.stringify(event.rawEvent(), null, 2)}
     
\ No newline at end of file