Skip to content

Commit c079f70

Browse files
authored
Merge pull request #53 from diggerhq/fix/drifts
Fix DriftS naming on project page
2 parents fb88e4f + e6ca30f commit c079f70

File tree

2 files changed

+4
-4
lines changed
  • src/app/(dynamic-pages)/(authenticated-pages)/(application-pages)/org/[organizationId]

2 files changed

+4
-4
lines changed

src/app/(dynamic-pages)/(authenticated-pages)/(application-pages)/org/[organizationId]/(specific-organization-pages)/drift/page.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const metadata: Metadata = {
1515
description: "You can create projects within teams, or within your organization.",
1616
};
1717

18-
export default async function DriftsPage({
18+
export default async function DriftedProjectsPage({
1919
params,
2020
searchParams,
2121
}: DashboardProps) {
@@ -39,7 +39,7 @@ export default async function DriftsPage({
3939
<Suspense
4040
fallback={
4141
<T.P className="text-muted-foreground my-6">
42-
Loading drifts...
42+
Loading drifted projects...
4343
</T.P>
4444
}
4545
>

src/app/(dynamic-pages)/(authenticated-pages)/(application-pages)/org/[organizationId]/team/[teamId]/(specific-team-pages)/@sidebar/TeamSidebar.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ async function TeamSidebarInternal({ organizationId }: { organizationId: string
3434
icon={<Layers className="size-4 text-foreground" />}
3535
/>
3636
<SidebarLink
37-
label="Drifts"
38-
href={`/org/${organizationId}/drifts`}
37+
label="Drift"
38+
href={`/org/${organizationId}/drift`}
3939
icon={<FlagIcon className="size-4 text-foreground" />}
4040
/>
4141
<SidebarLink

0 commit comments

Comments
 (0)