We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 203bbc6 commit f9d39dbCopy full SHA for f9d39db
src/components/Dashboard/DashboardPage.tsx
@@ -82,17 +82,16 @@ export function DashboardPage(props: DashboardPageProps) {
82
'striped-loader-slate': isLoading,
83
})}
84
>
85
- <div className="bg-slate-800/30 py-5">
+ <div className="bg-slate-800/30 py-5 min-h-[70px]">
86
<div className="container flex flex-wrap items-center gap-1.5">
87
- <DashboardTabButton
88
- label="Personal"
89
- isActive={!selectedTeamId && !isTeamPage}
90
- href="/dashboard"
91
- avatar={userAvatar}
92
- />
93
-
94
{!isLoading && (
95
<>
+ <DashboardTabButton
+ label="Personal"
+ isActive={!selectedTeamId && !isTeamPage}
+ href="/dashboard"
+ avatar={userAvatar}
+ />
96
{teamList.map((team) => {
97
const { avatar } = team;
98
const avatarUrl = avatar
0 commit comments