diff --git a/src/components/Notes/Note.tsx b/src/components/Notes/Note.tsx
index eb0ced3..16f709e 100644
--- a/src/components/Notes/Note.tsx
+++ b/src/components/Notes/Note.tsx
@@ -109,8 +109,6 @@ export const Note = ({ ndkEvent }: NoteProps) => {
const baseUrl = appRoutes.feed + '/'
- // Did user already repost this
-
// Show who reposted the note
const reposterVisual =
repostEvent && reposterRoute ? (
@@ -178,12 +176,18 @@ export const Note = ({ ndkEvent }: NoteProps) => {
{noteEvent.created_at && (
)}
diff --git a/src/components/Notes/internal/NoteWrapper.tsx b/src/components/Notes/internal/NoteWrapper.tsx
index b8c9e74..13a704a 100644
--- a/src/components/Notes/internal/NoteWrapper.tsx
+++ b/src/components/Notes/internal/NoteWrapper.tsx
@@ -32,6 +32,8 @@ export const NoteWrapper = ({ noteEntity }: NoteWrapperProps) => {
if (!note) return
+ const baseUrl = appRoutes.feed + '/'
+
return (
@@ -58,12 +60,18 @@ export const NoteWrapper = ({ noteEntity }: NoteWrapperProps) => {
{note.created_at && (
)}