fix: format

This commit is contained in:
vamsikrishnamathala
2026-03-05 16:59:09 +05:30
parent f8c9384c92
commit e5ecb275fb
3 changed files with 19 additions and 19 deletions

View File

@@ -81,7 +81,7 @@ function ApiTokensPage({ params }: Route.ComponentProps) {
</div>
) : (
<div className="flex h-full w-full flex-col">
<div className="h-full w-full flex items-center justify-center">
<div className="flex h-full w-full items-center justify-center">
<EmptyStateCompact
assetKey="token"
title={t("settings_empty_state.tokens.title")}

View File

@@ -16,7 +16,7 @@ export function APITokenSettingsLoader(props: Props) {
<section className="w-full overflow-y-auto">
<div className="mb-2 flex items-center justify-between border-b border-subtle pb-3.5">
<h3 className="text-xl font-medium">{title}</h3>
<span className="h-8 w-28 bg-layer-1 rounded-sm" />
<span className="h-8 w-28 rounded-sm bg-layer-1" />
</div>
<div className="divide-y-[0.5px] divide-subtle-1">
{range(2).map((i) => (

View File

@@ -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;