mirror of
https://github.com/lumina-rocks/lumina.git
synced 2026-06-04 09:41:32 +02:00
use nextjs Link component instead of javascript for the ViewNoteButton component
This commit is contained in:
@@ -1,10 +1,13 @@
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { SizeIcon } from "@radix-ui/react-icons";
|
||||
import Link from "next/link";
|
||||
import { nip19 } from "nostr-tools";
|
||||
|
||||
export default function ViewNoteButton({ event }: { event: any }) {
|
||||
const encodedNoteId = nip19.noteEncode(event.id);
|
||||
return (
|
||||
<Button variant="secondary" onClick={() => window.location.href = '/note/'+encodedNoteId}><SizeIcon /></Button>
|
||||
<Link href={'/note/' + encodedNoteId} passHref>
|
||||
<Button variant="secondary"><SizeIcon /></Button>
|
||||
</Link>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user