#64 Fix
All checks were successful
Build and Push Docker Images / build-backend (push) Successful in 16s
Build and Push Docker Images / build-frontend (push) Successful in 1m8s

This commit is contained in:
2026-01-16 13:14:09 +01:00
parent f2c9dcc900
commit 4f72919269

View File

@@ -7,7 +7,7 @@ const props = defineProps({
pin: { type: String, default: '' }
})
const config = useRuntimeConfig()
const runtimeConfig = useRuntimeConfig()
const emit = defineEmits(['success'])
@@ -78,7 +78,7 @@ const submit = async () => {
if (props.pin) headers['x-public-pin'] = props.pin
// An den Submit-Endpunkt senden (den müssen wir im Backend noch bauen!)
await $fetch(`${config.public.apiBase}/workflows/submit/${props.token}`, {
await $fetch(`${runtimeConfig.public.apiBase}/workflows/submit/${props.token}`, {
method: 'POST',
body: payload,
headers