Add correct type to Card prop
Some checks failed
Run Tests on Code / test (push) Successful in 3m59s
Build and Release Docker Image / test (push) Successful in 6m28s
Build and Release Docker Image / build (push) Failing after 11s
Build and Release Docker Image / release (push) Has been skipped

This commit is contained in:
Neshura 2024-01-01 20:18:58 +01:00
parent 4f04bb7b49
commit 798bf7cba9
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C

View file

@ -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,