Skip to content

Commit

Permalink
fix: breadcrumbs and tab updated (#1007)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhea0110 authored May 5, 2023
1 parent 86cb237 commit 4438789
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions apps/app/components/command-palette/command-pallette.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,7 @@ export const CommandPalette: React.FC = () => {
>
<div className="flex items-center gap-2 text-brand-secondary">
<SettingIcon className="h-4 w-4 text-brand-secondary" />
Billings and Plans
Billing and Plans
</div>
</Command.Item>
<Command.Item
Expand All @@ -839,7 +839,7 @@ export const CommandPalette: React.FC = () => {
>
<div className="flex items-center gap-2 text-brand-secondary">
<SettingIcon className="h-4 w-4 text-brand-secondary" />
Import/Export
Import/ Export
</div>
</Command.Item>
</>
Expand Down
2 changes: 1 addition & 1 deletion apps/app/layouts/settings-navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const SettingsNavbar: React.FC<Props> = ({ profilePage = false }) => {
href: `/${workspaceSlug}/settings/integrations`,
},
{
label: "Import/Export",
label: "Import/ Export",
href: `/${workspaceSlug}/settings/import-export`,
},
];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ const GeneralSettings: NextPage = () => {
<div className="grid grid-cols-12 gap-4 sm:gap-16">
<div className="col-span-12 sm:col-span-6">
<h4 className="text-lg font-semibold">Cover Photo</h4>
<p className="text-sm text-gray-500">
<p className="text-sm text-brand-secondary">
Select your cover photo from the given library.
</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion apps/app/pages/[workspaceSlug]/settings/billing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const BillingSettings: NextPage = () => {
title={`${activeWorkspace?.name ?? "Workspace"}`}
link={`/${workspaceSlug}`}
/>
<BreadcrumbItem title="Members Settings" />
<BreadcrumbItem title="Billing & Plans Settings" />
</Breadcrumbs>
}
>
Expand Down
2 changes: 1 addition & 1 deletion apps/app/pages/[workspaceSlug]/settings/import-export.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const ImportExport: NextPage = () => {
breadcrumbs={
<Breadcrumbs>
<BreadcrumbItem title={`${workspaceSlug ?? "Workspace"}`} link={`/${workspaceSlug}`} />
<BreadcrumbItem title="Members Settings" />
<BreadcrumbItem title="Import/ Export Settings" />
</Breadcrumbs>
}
>
Expand Down

1 comment on commit 4438789

@vercel
Copy link

@vercel vercel bot commented on 4438789 May 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

plane-dev – ./apps/app

plane-dev-plane.vercel.app
plane-dev.vercel.app
plane-dev-git-develop-plane.vercel.app

Please sign in to comment.