diff --git a/src/components/selectInput.js b/src/components/selectInput.js index ed288dc03..e22534ad0 100644 --- a/src/components/selectInput.js +++ b/src/components/selectInput.js @@ -70,7 +70,7 @@ ? JSON.stringify({ uuid: defaultValueText }) : defaultValueText || placeholderLabelText; - const [currentValue, setCurrentValue] = useState(resolvedCurrentValue); + const [currentValue, setCurrentValue] = usePageState(resolvedCurrentValue); useEffect(() => { setCurrentValue(resolvedCurrentValue);