Rename ThreadReply to EventReply

This commit is contained in:
Jon Staab
2025-02-06 10:24:31 -08:00
parent 7848859153
commit 1301c2c74f
5 changed files with 12 additions and 20 deletions
@@ -13,7 +13,7 @@
import NoteCard from "@app/components/NoteCard.svelte"
import MenuSpaceButton from "@app/components/MenuSpaceButton.svelte"
import ThreadActions from "@app/components/ThreadActions.svelte"
import ThreadReply from "@app/components/ThreadReply.svelte"
import EventReply from "@app/components/EventReply.svelte"
import {deriveEvent, decodeRelay} from "@app/state"
import {setChecked} from "@app/notifications"
@@ -110,5 +110,5 @@
</PageBar>
</div>
{#if showReply}
<ThreadReply {url} event={$event} onClose={closeReply} onSubmit={closeReply} />
<EventReply {url} event={$event} onClose={closeReply} onSubmit={closeReply} />
{/if}