From 967de0b79f8b72168696f2627e2d36fb42b7928b Mon Sep 17 00:00:00 2001 From: miloschwartz Date: Sun, 19 Apr 2026 11:19:23 -0700 Subject: [PATCH] fix metadata for public resources --- src/app/[orgId]/settings/resources/proxy/[niceId]/page.tsx | 2 +- src/app/[orgId]/settings/resources/proxy/page.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/[orgId]/settings/resources/proxy/[niceId]/page.tsx b/src/app/[orgId]/settings/resources/proxy/[niceId]/page.tsx index 5663e2606..06a4af045 100644 --- a/src/app/[orgId]/settings/resources/proxy/[niceId]/page.tsx +++ b/src/app/[orgId]/settings/resources/proxy/[niceId]/page.tsx @@ -2,7 +2,7 @@ import type { Metadata } from "next"; import { redirect } from "next/navigation"; export const metadata: Metadata = { - title: "Proxy Resource" + title: "Public Resource" }; export default async function ResourcePage(props: { diff --git a/src/app/[orgId]/settings/resources/proxy/page.tsx b/src/app/[orgId]/settings/resources/proxy/page.tsx index a521ba17d..cdbf959f4 100644 --- a/src/app/[orgId]/settings/resources/proxy/page.tsx +++ b/src/app/[orgId]/settings/resources/proxy/page.tsx @@ -16,7 +16,7 @@ import { cache } from "react"; import type { Metadata } from "next"; export const metadata: Metadata = { - title: "Proxy Resources" + title: "Public Resources" }; export interface ProxyResourcesPageProps {