From eaf9d57f969e664cbc9099f84594910f3e2c8c1b Mon Sep 17 00:00:00 2001 From: Evan Kaloudis Date: Fri, 19 Jan 2024 11:07:09 -0500 Subject: [PATCH] ZEUS-1955: Node config: clear host data when changing interface --- views/Settings/NodeConfiguration.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/views/Settings/NodeConfiguration.tsx b/views/Settings/NodeConfiguration.tsx index 3b798d340..e5b72b0ee 100644 --- a/views/Settings/NodeConfiguration.tsx +++ b/views/Settings/NodeConfiguration.tsx @@ -646,7 +646,10 @@ export default class NodeConfiguration extends React.Component< this.setState({ implementation: value, saved: false, - certVerification: value === 'lndhub' ? true : false + certVerification: value === 'lndhub' ? true : false, + host: '', + lndhubUrl: '', + url: '' }); }} values={interfaceKeys}