arreglar types

This commit is contained in:
Cat /dev/Nulo 2024-09-22 18:55:47 -03:00
parent 0be2ff8911
commit 8ed967209f
2 changed files with 1 additions and 3 deletions

View file

@ -1,8 +1,6 @@
<script lang="ts">
import SearchBar from '$lib/components/SearchBar.svelte';
import Badge from '$lib/components/ui/badge/badge.svelte';
import Button from '$lib/components/ui/button/button.svelte';
import * as Card from '$lib/components/ui/card/index.js';
import { ArrowLeft } from 'lucide-svelte';
import type { PageData } from './$types';
import { goto } from '$app/navigation';

View file

@ -7,7 +7,7 @@
export let producto: {
id_producto: string;
marcas: string[];
marcas: Set<string>;
in_datasets_count: number;
descriptions: string[];
};