diff --git a/src/app/components/elements/PostCountDown.jsx b/src/app/components/elements/PostCountDown.jsx index 25c4d0df4959a45dce51a462e752f58d089244d7..9eb3044564a479d10081a02765f1553d638b0657 100644 --- a/src/app/components/elements/PostCountDown.jsx +++ b/src/app/components/elements/PostCountDown.jsx @@ -7,6 +7,9 @@ import classnames from 'classnames'; const PostCountDown = (props) => { const { post } = props; const jsonMetadata = post.get('json_metadata'); + if (!jsonMetadata || !jsonMetadata.get) { + return null + } const countDownEndDate = jsonMetadata.get('countdown'); const [remainingTime, setRemainingTime] = useState(); const [intervalHandler, setIntervalHandler] = useState();