chore style

This commit is contained in:
oiov
2025-04-05 13:58:04 +08:00
parent 242430c8ca
commit 435aa42d53
2 changed files with 5 additions and 11 deletions
+4 -10
View File
@@ -379,16 +379,10 @@ export default function EmailList({
</div>
</div>
{isLoading && (
<div className="flex flex-col gap-2 p-2">
<Skeleton className="h-[80px] w-full rounded-lg" />
<Skeleton className="h-[80px] w-full rounded-lg" />
<Skeleton className="h-[80px] w-full rounded-lg" />
<Skeleton className="h-[80px] w-full rounded-lg" />
<Skeleton className="h-[80px] w-full rounded-lg" />
<Skeleton className="h-[80px] w-full rounded-lg" />
<Skeleton className="h-[80px] w-full rounded-lg" />
<Skeleton className="h-[80px] w-full rounded-lg" />
<Skeleton className="h-[80px] w-full rounded-lg" />
<div className="flex flex-col gap-2 p-1">
{[...Array(9)].map((_, index) => (
<Skeleton key={index} className="h-[80px] w-full rounded-lg" />
))}
</div>
)}
{!isLoading && !error && (
+1 -1
View File
File diff suppressed because one or more lines are too long