Skip to content

Commit

Permalink
Comment out debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
satoshi7190 committed Jun 11, 2024
1 parent 6d20865 commit 81d4979
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions app/src/routes/SettingSelector.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
export let rulesPath: string;
export let paramsOption: ParamsOption;
let debug: any; // NOTE debug
// let debug: any; // NOTE debug
let optionParameter: string[] = [];
$: epsgOptions = filetypeOptions[filetype]?.epsg || [];
Expand All @@ -30,7 +30,7 @@
// Exclude '@output'
optionParameter = Object.keys(parameters.items).filter((item) => item !== '@output');
paramsOption = parameters;
debug = parameters;
// debug = parameters; // NOTE debug
}
$: setOptionParameter(filetype);
Expand Down Expand Up @@ -87,10 +87,11 @@
}
}
</script>

<!--- // NOTE debug -->
<!--
{#if debug}
<p>{JSON.stringify(debug)}</p>
{/if}
{/if} -->

<div>
<div class="flex items-center gap-1.5">
Expand Down

0 comments on commit 81d4979

Please sign in to comment.