fix: estaba mal el tipo de dato

This commit is contained in:
2026-01-01 23:06:35 -03:00
parent 4e36b29e4a
commit 832ad14b6a
+2
View File
@@ -9,8 +9,10 @@
import type { UserResponseDto } from '../../../types'; import type { UserResponseDto } from '../../../types';
interface Prop { interface Prop {
data: {
usuarios?: UserResponseDto[]; usuarios?: UserResponseDto[];
error: boolean; error: boolean;
};
} }
let { data }: Prop = $props(); let { data }: Prop = $props();