diff --git a/apps/web/app/(all)/[workspaceSlug]/(settings)/settings/(workspace)/access-tokens/page.tsx b/apps/web/app/(all)/[workspaceSlug]/(settings)/settings/(workspace)/access-tokens/page.tsx index 85bc018b7d..a5cd10dc71 100644 --- a/apps/web/app/(all)/[workspaceSlug]/(settings)/settings/(workspace)/access-tokens/page.tsx +++ b/apps/web/app/(all)/[workspaceSlug]/(settings)/settings/(workspace)/access-tokens/page.tsx @@ -81,7 +81,7 @@ function ApiTokensPage({ params }: Route.ComponentProps) { ) : (
-
+

{title}

- +
{range(2).map((i) => ( diff --git a/packages/constants/src/workspace.ts b/packages/constants/src/workspace.ts index 1ca1051fa3..6083c77195 100644 --- a/packages/constants/src/workspace.ts +++ b/packages/constants/src/workspace.ts @@ -172,23 +172,23 @@ export const DEFAULT_GLOBAL_VIEWS_LIST: { key: TStaticViewTypes; i18n_label: string; }[] = [ - { - key: "all-issues", - i18n_label: "default_global_view.all_issues", - }, - { - key: "assigned", - i18n_label: "default_global_view.assigned", - }, - { - key: "created", - i18n_label: "default_global_view.created", - }, - { - key: "subscribed", - i18n_label: "default_global_view.subscribed", - }, - ]; + { + key: "all-issues", + i18n_label: "default_global_view.all_issues", + }, + { + key: "assigned", + i18n_label: "default_global_view.assigned", + }, + { + key: "created", + i18n_label: "default_global_view.created", + }, + { + key: "subscribed", + i18n_label: "default_global_view.subscribed", + }, +]; export interface IWorkspaceSidebarNavigationItem { key: string;