fix: remove useless cn

This commit is contained in:
Joel
2026-02-05 11:03:39 +08:00
parent 2d4fcce6fe
commit d2a13730a0
2 changed files with 2 additions and 2 deletions

View File

@ -204,7 +204,7 @@ const Apps = ({
</div>
<div className={cn(
'relative mt-4 flex flex-1 shrink-0 grow flex-col pb-6',
'relative flex flex-1 shrink-0 grow flex-col pb-6',
)}
>
<nav

View File

@ -71,7 +71,7 @@ const Explore: FC<IExploreProps> = ({
}
>
<Sidebar controlUpdateInstalledApps={controlUpdateInstalledApps} />
<div className="w-0 grow h-full min-h-0 overflow-y-auto">
<div className="h-full min-h-0 w-0 grow">
{children}
</div>
</ExploreContext.Provider>