We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4de66c commit bb78bbdCopy full SHA for bb78bbd
1 file changed
frontend/src/pages/keynotes/[slug]/index.tsx
@@ -20,9 +20,7 @@ const KeynotePage = () => {
20
const {
21
data: {
22
conference: {
23
- talk: {
24
- slidoUrl,
25
- },
+ talk,
26
keynote: {
27
title,
28
description,
@@ -42,6 +40,8 @@ const KeynotePage = () => {
42
40
},
43
41
});
44
+ const { slidoUrl } = talk || {};
+
45
const speakersName = speakers.map((speaker) => speaker.fullName).join(" & ");
46
47
return (
0 commit comments