Add correct type to Card prop
This commit is contained in:
parent
6ae4141b8c
commit
74ab3328d2
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@
|
|||
import { slide } from 'svelte/transition';
|
||||
import type { Service } from '$lib/types/data-types';
|
||||
|
||||
let { service: Service } = $props();
|
||||
let { service }: { service: Service } = $props();
|
||||
|
||||
let hover = $state({
|
||||
title: false,
|
||||
|
|
Loading…
Reference in a new issue