fix: estaba mal el tipo de dato

This commit is contained in:
2026-01-01 23:06:35 -03:00
parent 4e36b29e4a
commit 832ad14b6a

View File

@@ -9,8 +9,10 @@
import type { UserResponseDto } from '../../../types';
interface Prop {
usuarios?: UserResponseDto[];
error: boolean;
data: {
usuarios?: UserResponseDto[];
error: boolean;
};
}
let { data }: Prop = $props();