diff --git a/src/components/AdminChildPage.tsx b/src/components/AdminChildPage.tsx
index d5afc963..6a96900e 100644
--- a/src/components/AdminChildPage.tsx
+++ b/src/components/AdminChildPage.tsx
@@ -45,11 +45,9 @@ function AdminChildPage({
{breadcrumb &&
<>
/
-
-
- {breadcrumb}
-
-
+
+ {breadcrumb}
+
>}
{isLoading &&
}
diff --git a/src/components/Badge.tsx b/src/components/Badge.tsx
index 34102ab3..69c1fc8a 100644
--- a/src/components/Badge.tsx
+++ b/src/components/Badge.tsx
@@ -4,6 +4,7 @@ export default function Badge({
children,
className,
type = 'large',
+ dimContent,
highContrast,
uppercase,
interactive,
@@ -11,6 +12,7 @@ export default function Badge({
children: React.ReactNode
className?: string
type?: 'large' | 'small' | 'text-only'
+ dimContent?: boolean
highContrast?: boolean
uppercase?: boolean
interactive?: boolean
@@ -21,7 +23,7 @@ export default function Badge({
return clsx(
'px-1.5 py-[0.3rem] rounded-md',
'bg-gray-100/80 dark:bg-gray-900/80',
- 'border border-gray-200/60 dark:border-gray-800/75'
+ 'border border-gray-200/60 dark:border-gray-800/75',
);
case 'small':
return clsx(
@@ -46,7 +48,9 @@ export default function Badge({
stylesForType(),
uppercase && 'uppercase tracking-wider',
)}>
- {children}
+
+ {children}
+
);
}