fix(front): allow string in id prop of artist detail

This commit is contained in:
ArneBo 2025-02-24 16:10:03 +01:00
parent cfe8f52d8c
commit 8ef56e3c63
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ import Modal from '~/components/ui/Modal.vue'
import Spacer from '~/components/ui/Spacer.vue'
interface Props {
id: number
id: number | string
}
const props = defineProps<Props>()