Skip to content

Commit

Permalink
remove debugging log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Abby Wheelis committed Nov 17, 2023
1 parent dec322f commit a299574
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions www/js/survey/multilabel/confirmHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ export let inputDetails: InputDetails<MultilabelKey>;
export async function getLabelOptions(appConfigParam?) {
if (appConfigParam) appConfig = appConfigParam;
if (labelOptions) return labelOptions;
console.log('in get label options', appConfig);
if (appConfig.label_options) {
const labelOptionsJson = await fetchUrlCached(appConfig.label_options);
logDebug(
Expand All @@ -50,7 +49,6 @@ export async function getLabelOptions(appConfigParam?) {
'No label_options found in config, using default label options at ' + defaultLabelOptionsURL,
);
const defaultLabelOptionsJson = await fetchUrlCached(defaultLabelOptionsURL);
console.log('label options', defaultLabelOptionsJson);
labelOptions = JSON.parse(defaultLabelOptionsJson) as LabelOptions;
}
/* fill in the translations to the 'text' fields of the labelOptions,
Expand Down

0 comments on commit a299574

Please sign in to comment.