diff --git a/src/utils/config/widget-helpers.js b/src/utils/config/widget-helpers.js index c9bdd0fb..6020e08a 100644 --- a/src/utils/config/widget-helpers.js +++ b/src/utils/config/widget-helpers.js @@ -29,7 +29,7 @@ export async function cleanWidgetGroups(widgets) { return widgets.map((widget, index) => { const sanitizedOptions = widget.options; const optionKeys = Object.keys(sanitizedOptions); - ["url", "username", "password", "key"].forEach((pO) => { + ["username", "password", "key"].forEach((pO) => { if (optionKeys.includes(pO)) { delete sanitizedOptions[pO]; }