Skip to content

Commit 79fda4e

Browse files
committed
cleanup
1 parent a674598 commit 79fda4e

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

front_end/src/components/forecast_maker/forecast_maker_question/forecast_maker_multiple_choice.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@ const ForecastMakerMultipleChoice: FC<Props> = ({
152152
() => choicesForecasts.every((el) => el.forecast !== null),
153153
[choicesForecasts]
154154
);
155-
console.log(choicesForecasts.map(({ forecast }) => forecast));
156155
const forecastsSum = useMemo(
157156
() =>
158157
forecastHasValues

front_end/src/utils/questions/choices.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,6 @@ export function generateChoiceItemsFromMultipleChoiceForecast(
3434
question.aggregations[question.default_aggregation_method].latest;
3535

3636
const allOptions = getAllOptionsHistory(question);
37-
if (question.id == 39727) {
38-
console.log(question.options, allOptions);
39-
}
40-
4137
const choiceOrdering: number[] = allOptions?.map((_, i) => i) ?? [];
4238
if (!preserveOrder) {
4339
choiceOrdering.sort((a, b) => {

0 commit comments

Comments
 (0)