This commit is contained in:
isUnknown 2025-04-07 18:05:28 +02:00
parent c29906f306
commit 2382783f8d

View file

@ -148,7 +148,7 @@ const downloadText = computed(() => {
const correspondingDTLProposal = computed(() => {
if (activeTracks.value?.length === 1) {
const matchingProposal = page.value.designToLight.find(
const matchingProposal = page.value.designToLight?.find(
(proposal) => proposal.location.trackSlug === activeTracks.value[0].slug
);
return matchingProposal ? [matchingProposal] : false;