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: breadcrumbs and tab updated #1007

Merged
merged 1 commit into from
May 5, 2023
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
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