From e21f26a177f213afeb6cb6598ddf5575b2ba8f2a Mon Sep 17 00:00:00 2001 From: celine Date: Mon, 13 Apr 2026 22:54:27 -0400 Subject: [PATCH] add log in to the logged out error on pub dash --- app/lish/[did]/[publication]/dashboard/page.tsx | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/app/lish/[did]/[publication]/dashboard/page.tsx b/app/lish/[did]/[publication]/dashboard/page.tsx index 6dfd25bb..4e9bfe4a 100644 --- a/app/lish/[did]/[publication]/dashboard/page.tsx +++ b/app/lish/[did]/[publication]/dashboard/page.tsx @@ -8,6 +8,7 @@ import { AtUri } from "@atproto/syntax"; import { NotFoundLayout } from "components/PageLayouts/NotFoundLayout"; import PublicationDashboard from "./PublicationDashboard"; import { normalizePublicationRecord } from "src/utils/normalizeRecords"; +import { LoginModal } from "components/LoginButton"; export async function generateMetadata(props: { params: Promise<{ publication: string; did: string }>; @@ -37,7 +38,16 @@ export default async function Publication(props: { if (!identity || !identity.atp_did) return ( -

Looks like you're not logged in.

+

+ Looks like you're not logged in.{" "} + Log in here + } + /> + ! +

If the issue persists please{" "} send us a note. -- 2.51.2