Skip to content

Commit b71cbff

Browse files
committed
fix: team overview alignment
1 parent 052bb05 commit b71cbff

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

apps/dashboard/src/app/team/[team_slug]/(team)/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export default async function Page(props: {
124124
<div className="flex flex-col justify-between gap-16 pb-16 md:container md:pt-8 xl:flex-row">
125125
<div className="grow">
126126
{isEmpty ? (
127-
<div className="max-md:container">
127+
<div className="container p-6">
128128
<EmptyState />
129129
</div>
130130
) : (

apps/dashboard/src/app/team/[team_slug]/[project_slug]/page.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,6 @@ async function getUserOpUsage(args: {
464464
const json = await res.json();
465465

466466
if (res.status !== 200) {
467-
console.log(await res.text());
468467
console.error("Failed to fetch user ops usage");
469468
return [];
470469
}

apps/dashboard/src/app/team/components/Analytics/EmptyState.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import walletsIcon from "../../../../../public/assets/tw-icons/wallets.svg";
1717

1818
export function EmptyState() {
1919
return (
20-
<div className="flex items-center justify-center md:min-h-[500px]">
20+
<div className="flex items-start justify-center md:min-h-[500px]">
2121
<div className="group container flex flex-col items-center justify-center gap-8 rounded-lg border bg-card p-6 py-24">
2222
<div className="flex max-w-[500px] flex-col items-center justify-center gap-6">
2323
<AnimatedIcons />

0 commit comments

Comments
 (0)