Full cleanup pass

This commit is contained in:
adilallo
2026-05-21 23:25:56 -06:00
parent 28de8ef3bc
commit 99f535f821
149 changed files with 2623 additions and 1242 deletions
@@ -1,3 +1,7 @@
"use client";
import { useTranslation } from "../../../contexts/MessagesContext";
/**
* Placeholder grid matching GovernanceTemplateGrid layout (loading state).
*/
@@ -8,6 +12,7 @@ export function GovernanceTemplateGridSkeleton({
count: number;
twoColumnsFromMd?: boolean;
}) {
const t = useTranslation("controlsChrome");
const gridLayoutClasses = twoColumnsFromMd
? `
flex flex-col gap-[18px]
@@ -24,7 +29,7 @@ export function GovernanceTemplateGridSkeleton({
<div
className={gridLayoutClasses}
aria-busy
aria-label="Loading templates"
aria-label={t("governanceTemplateGridLoading")}
>
{Array.from({ length: count }, (_, i) => (
<div