This commit is contained in:
zmeyer44 2023-11-01 12:22:20 -04:00
parent b6b3b75434
commit 32dd04c415
2 changed files with 1 additions and 13 deletions

View File

@ -1,13 +1,8 @@
import type { Metadata, ResolvingMetadata } from "next";
import { get } from "@/lib/server-actions/events/cache";
type Props = {
params: { naddr: string };
searchParams: { [key: string]: string | string[] | undefined };
};
export async function generateMetadata(
{ params, searchParams }: Props,
{ params }: { params: { naddr: string } },
parent: ResolvingMetadata,
): Promise<Metadata> {
// read route params

View File

@ -11,7 +11,6 @@ import {
} from "@/lib/nostr/utils";
import Header from "./_components/Header";
import LocationPreview from "@/components/LocationPreview";
import HostsContainer from "./_components/HostsContainer";
import LocationContainer from "./_components/LocationContainer";
import AnnouncementsContainer from "./_components/AnnouncementsContainer";
@ -42,7 +41,6 @@ export default function EventPage({
});
const event = events[0];
useEffect(() => {
console.log("EFFECT CALLED", event);
if (event) {
const { tags, content } = event;
const name = getTagValues("name", tags) ?? "Untitled";
@ -51,17 +49,12 @@ export default function EventPage({
getTagValues("picture", tags) ??
getTagValues("banner", tags) ??
BANNER;
console.log("setting event");
add({
identifier: naddr,
name: name,
description: content,
image: image,
});
(async () => {
const res = await get(naddr);
console.log("RESPONE", res);
})();
}
}, [event]);