diff --git a/components/dashboard/src/Menu.tsx b/components/dashboard/src/Menu.tsx index a8c73a0a4d28c8..2d7207fb3529ab 100644 --- a/components/dashboard/src/Menu.tsx +++ b/components/dashboard/src/Menu.tsx @@ -281,7 +281,7 @@ export default function Menu() { )}
Registered Users
diff --git a/components/dashboard/src/admin/TeamDetail.tsx b/components/dashboard/src/admin/TeamDetail.tsx index e206a64d1cb323..2104bc5faddbbc 100644 --- a/components/dashboard/src/admin/TeamDetail.tsx +++ b/components/dashboard/src/admin/TeamDetail.tsx @@ -125,7 +125,7 @@ export default function TeamDetail(props: { team: Team }) {
{totalChanges} Change{totalChanges === 1 ? "" : "s"}
diff --git a/components/dashboard/src/components/PillLabel.tsx b/components/dashboard/src/components/PillLabel.tsx
index cbf456927ea807..a12368ab8d1265 100644
--- a/components/dashboard/src/components/PillLabel.tsx
+++ b/components/dashboard/src/components/PillLabel.tsx
@@ -17,7 +17,7 @@
export default function PillLabel(props: { children?: React.ReactNode; type?: "info" | "warn"; className?: string }) {
const infoStyle = "bg-blue-50 text-blue-500 dark:bg-blue-500 dark:text-blue-100";
const warnStyle = "bg-orange-100 text-orange-700 dark:bg-orange-600 dark:text-orange-100";
- const style = `ml-2 px-3 py-1 text-sm uppercase rounded-xl ${props.type === "warn" ? warnStyle : infoStyle} ${
+ const style = `px-3 py-1 text-sm uppercase rounded-xl ${props.type === "warn" ? warnStyle : infoStyle} ${
props.className
}`;
return {props.children};
diff --git a/components/dashboard/src/components/SolidCard.tsx b/components/dashboard/src/components/SolidCard.tsx
index 85b2b0d2548612..98b045b5e427ef 100644
--- a/components/dashboard/src/components/SolidCard.tsx
+++ b/components/dashboard/src/components/SolidCard.tsx
@@ -8,7 +8,7 @@ function SolidCard(p: { className?: string; onClick?: () => void; children?: Rea
return (