From e7c9f9f546f18241f5827fc5bd5d153e965d642b Mon Sep 17 00:00:00 2001 From: ShubhamPalriwala Date: Tue, 6 Feb 2024 16:49:03 +0530 Subject: [PATCH] chore: rename cleanup --- app/(dashboard)/select-repo/loading.tsx | 6 +++--- app/(dashboard)/select-repo/page.tsx | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) 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")