honestamente

This commit is contained in:
2025-12-26 11:44:54 -03:00
parent 1081928766
commit 5c8f06e27f

View File

@@ -124,7 +124,7 @@
<CardContent> <CardContent>
<CardHeader class="flex justify-between"> <CardHeader class="flex justify-between">
<CardTitle>Seguidos:</CardTitle> <CardTitle>Seguidos:</CardTitle>
{#if Array.isArray(data.seguidos.response)} {#if Array.isArray(data?.seguidos?.response)}
<Badge variant="secondary">{data.seguidos.response.length || 0}</Badge> <Badge variant="secondary">{data.seguidos.response.length || 0}</Badge>
{/if} {/if}
</CardHeader> </CardHeader>
@@ -145,7 +145,7 @@
<CardContent> <CardContent>
<CardHeader class="flex justify-between"> <CardHeader class="flex justify-between">
<CardTitle>Seguidores:</CardTitle> <CardTitle>Seguidores:</CardTitle>
{#if Array.isArray(data.seguidores.response)} {#if Array.isArray(data?.seguidores?.response)}
<Badge variant="secondary">{data.seguidores.response.length || 0}</Badge> <Badge variant="secondary">{data.seguidores.response.length || 0}</Badge>
{/if} {/if}
</CardHeader> </CardHeader>