Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix DriftS naming on project page #53

Merged
merged 1 commit into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const metadata: Metadata = {
description: "You can create projects within teams, or within your organization.",
};

export default async function DriftsPage({
export default async function DriftedProjectsPage({
params,
searchParams,
}: DashboardProps) {
Expand All @@ -39,7 +39,7 @@ export default async function DriftsPage({
<Suspense
fallback={
<T.P className="text-muted-foreground my-6">
Loading drifts...
Loading drifted projects...
</T.P>
}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ async function TeamSidebarInternal({ organizationId }: { organizationId: string
icon={<Layers className="size-4 text-foreground" />}
/>
<SidebarLink
label="Drifts"
href={`/org/${organizationId}/drifts`}
label="Drift"
href={`/org/${organizationId}/drift`}
icon={<FlagIcon className="size-4 text-foreground" />}
/>
<SidebarLink
Expand Down
Loading