diff --git a/src/components/Notes.tsx b/src/components/Notes.tsx index 108f749..3c7a1d2 100644 --- a/src/components/Notes.tsx +++ b/src/components/Notes.tsx @@ -17,9 +17,6 @@ function Note({ e }: { e: NostrEvent }) { noteId = nip19.noteEncode(e.id) } - // Use a regex to read through the content and turn the links into tags - // const content = e.content.replace(/(https?:\/\/[^\s]+)/g, '$1') - return (
@@ -34,7 +31,6 @@ function Note({ e }: { e: NostrEvent }) { {date.toLocaleString()}
- {/*
Note
*/} ) } @@ -55,11 +51,6 @@ export default function Notes() { {events.filter((event) => !event.tags.length).map((event) => (
  • ))} - {/*
  • -
  • -
  • -
  • -
  • */} ) } \ No newline at end of file