diff --git a/frontend/src/Editor/Inspector/ActionConfigurationPanels/GotoApp.jsx b/frontend/src/Editor/Inspector/ActionConfigurationPanels/GotoApp.jsx index 3c8636d647..d42ebee133 100644 --- a/frontend/src/Editor/Inspector/ActionConfigurationPanels/GotoApp.jsx +++ b/frontend/src/Editor/Inspector/ActionConfigurationPanels/GotoApp.jsx @@ -6,10 +6,8 @@ import { useTranslation } from 'react-i18next'; export function GotoApp({ getAllApps, event, handlerChanged, eventIndex, darkMode }) { const queryParamChangeHandler = (index, key, value) => { - if (event?.queryParams?.[index]?.[key]) { - event.queryParams[index][key] = value; - handlerChanged(eventIndex, 'queryParams', event.queryParams); - } + event.queryParams[index][key] = value; + handlerChanged(eventIndex, 'queryParams', event.queryParams); }; const { t } = useTranslation();