While working on #133, an issue with the FormFooter component came up where the button is not rendering the correct text. It looks like the following code in combination with the page updating is causing the issue:
|
// wipe state if footer removed from DOM |
|
useEffect(() => { |
|
return () => setFooterActions({}) |
|
}, [setFooterActions]) |
Currently the button says "Submit" rather than "Execute" on initial load but everything else is working as expected.
While working on #133, an issue with the
FormFootercomponent came up where the button is not rendering the correct text. It looks like the following code in combination with the page updating is causing the issue:groups-ui/src/components/molecules/form-footer.tsx
Lines 83 to 86 in 598ca8e
Currently the button says "Submit" rather than "Execute" on initial load but everything else is working as expected.