This commit is contained in:
Nicolas Mowen 2025-10-21 20:51:15 -06:00
parent 029fd544b8
commit 0bcabf0731

View File

@ -366,8 +366,11 @@ export function GroupedClassificationCard({
)} )}
> >
{group.map((data: ClassificationItemData) => ( {group.map((data: ClassificationItemData) => (
<ClassificationCard <div
key={data.filename} key={data.filename}
className={cn(isMobile && "aspect-square size-full")}
>
<ClassificationCard
data={data} data={data}
threshold={threshold} threshold={threshold}
selected={false} selected={false}
@ -380,6 +383,7 @@ export function GroupedClassificationCard({
> >
{children?.(data)} {children?.(data)}
</ClassificationCard> </ClassificationCard>
</div>
))} ))}
</div> </div>
</div> </div>