fixed errors

This commit is contained in:
Ren Amamiya
2023-04-05 15:24:44 +07:00
parent 0d94313b45
commit 5da94e091f
10 changed files with 147 additions and 53 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ export const NoteParent = memo(function NoteParent({ id }: { id: string }) {
parent_id: parentID,
parent_comment_id: '',
created_at: event.created_at,
account_id: activeAccount.pubkey,
account_id: activeAccount.id,
}).catch(console.error);
},
undefined,
+1 -1
View File
@@ -41,7 +41,7 @@ export const NoteRepost = memo(function NoteRepost({ id }: { id: string }) {
parent_id: parentID,
parent_comment_id: '',
created_at: event.created_at,
account_id: activeAccount.pubkey,
account_id: activeAccount.id,
}).catch(console.error);
},
undefined,