Skip to content

Commit

Permalink
chore: rename cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ShubhamPalriwala committed Feb 6, 2024
1 parent 92d185b commit e7c9f9f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions app/(dashboard)/select-repo/loading.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { DashboardHeader } from "@/components/header"
import { DashboardShell } from "@/components/shell"

export default function DashboardSettingsLoading() {
export default function SelectRepoLoading() {
return (
<DashboardShell>
<DashboardHeader
heading="Open issues"
text="Comment on these issues to get assigned to work on them."
heading="Connect a Repository"
text="Select the repository you want to integrate oss.gg with."
/>
</DashboardShell>
)
Expand Down
4 changes: 2 additions & 2 deletions app/(dashboard)/select-repo/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit e7c9f9f

Please sign in to comment.