Feed - posts #227

Merged
enes merged 23 commits from feat/131-feed-posts into staging 2025-02-14 19:54:29 +00:00
Showing only changes of commit 9b74713e0b - Show all commits

View File

@ -12,7 +12,7 @@ export const NoteQuoteRepostPopup = ({
ndkEvent,
handleClose
}: PropsWithChildren<NoteQuoteRepostPopup>) => {
const content = ndkEvent.encode()
const content = `nostr:${ndkEvent.encode()}`
return createPortal(
<div className='popUpMain'>
@ -46,7 +46,7 @@ export const NoteQuoteRepostPopup = ({
Quote repost this?
</label>
<NoteSubmit
initialContent={`\n\n${content}`}
initialContent={`\n\n:${content}`}
handleClose={handleClose}
/>
</div>