From 51d2cde50f918598727baeca32f403711967a152 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20W=C3=B3jcik?= Date: Mon, 13 Apr 2026 14:54:44 +0200 Subject: [PATCH] actually store updated ip and port --- .../steps/MigrationWizardEdgeComponentStep.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/web/src/pages/MigrationWizardPage/steps/MigrationWizardEdgeComponentStep.tsx b/web/src/pages/MigrationWizardPage/steps/MigrationWizardEdgeComponentStep.tsx index 8283e4230e..ce5638f5e2 100644 --- a/web/src/pages/MigrationWizardPage/steps/MigrationWizardEdgeComponentStep.tsx +++ b/web/src/pages/MigrationWizardPage/steps/MigrationWizardEdgeComponentStep.tsx @@ -66,6 +66,10 @@ export const MigrationWizardEdgeComponentStep = () => { onSubmit: ({ value }) => { useMigrationWizardStore.setState({ ...value, + proxy_url: { + domain: value.ip_or_domain, + port: value.grpc_port, + }, }); useMigrationWizardStore.getState().next(); },