fixed note modal
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
import { UserWithUsername } from '@components/note/atoms/userWithUsername';
|
||||
import { Content } from '@components/note/content';
|
||||
import NoteReply from '@components/note/modal/noteReply';
|
||||
|
||||
@@ -12,7 +11,6 @@ const Modal = ({ event }: { event: any }) => {
|
||||
'#e': [event.id],
|
||||
since: event.created_at,
|
||||
kinds: [1],
|
||||
limit: 100,
|
||||
},
|
||||
});
|
||||
|
||||
@@ -23,7 +21,6 @@ const Modal = ({ event }: { event: any }) => {
|
||||
<div className="relative z-10 h-full p-4">
|
||||
<div className="relative h-full overflow-auto rounded-lg border-[0.5px] border-white/30 bg-zinc-800 p-4 shadow-inner">
|
||||
<div className="flex flex-col gap-4">
|
||||
<UserWithUsername pubkey={event.pubkey} />
|
||||
<Content data={event} />
|
||||
</div>
|
||||
<div className="flex flex-col gap-2 divide-y divide-zinc-700">
|
||||
|
||||
Reference in New Issue
Block a user