diff --git a/app/(dashboard)/select-repo/loading.tsx b/app/(dashboard)/select-repo/loading.tsx index c8d23f6..2cfe7af 100644 --- a/app/(dashboard)/select-repo/loading.tsx +++ b/app/(dashboard)/select-repo/loading.tsx @@ -1,12 +1,12 @@ import { DashboardHeader } from "@/components/header" import { DashboardShell } from "@/components/shell" -export default function DashboardSettingsLoading() { +export default function SelectRepoLoading() { return ( ) diff --git a/app/(dashboard)/select-repo/page.tsx b/app/(dashboard)/select-repo/page.tsx index ea4bcb1..0996b7d 100644 --- a/app/(dashboard)/select-repo/page.tsx +++ b/app/(dashboard)/select-repo/page.tsx @@ -12,10 +12,10 @@ import { selectRepoActions } from "./actions" export const metadata = { title: "Connect a Repository", - description: "Comment on these issues to get assigned to work on them.", + description: "Select the repository you want to integrate oss.gg with.", } -export default async function SettingsPage() { +export default async function SelectRepoPage() { const user = await getCurrentUser() if (!user) { redirect(authOptions?.pages?.signIn || "/login")