community_prediction can be null on subquestions
e.g. https://www.metaculus.com/api2/questions/12663/
This commit is contained in:
parent
002a0e5e2f
commit
2176c51d5f
|
@ -64,6 +64,7 @@ const predictableProps = {
|
|||
additionalProperties: true,
|
||||
},
|
||||
},
|
||||
nullable: true,
|
||||
additionalProperties: true,
|
||||
},
|
||||
} as const;
|
||||
|
|
|
@ -36,7 +36,7 @@ async function apiQuestionToFetchedQuestions(apiQuestion: ApiQuestion): Promise<
|
|||
const isBinary = q.possibilities.type === "binary";
|
||||
let options: FetchedQuestion["options"] = [];
|
||||
if (isBinary) {
|
||||
const probability = q.community_prediction.full.q2;
|
||||
const probability = q.community_prediction?.full.q2;
|
||||
if (probability !== undefined) {
|
||||
options = [
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue
Block a user