We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5157d5e commit 0467e23Copy full SHA for 0467e23
src/lib/events.ts
@@ -73,7 +73,9 @@ export async function eventWithComputed<
73
(item) => item.slug?.id === talk.id,
74
);
75
const isSpeakerTalkCanceled = scheduleTalk?.status === "cancelled";
76
- if (isSpeakerTalkCanceled) return;
+ if (isSpeakerTalkCanceled) {
77
+ return;
78
+ }
79
const person = await getEntry("people", speaker.id.id);
80
81
if (!person) {
0 commit comments