-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
Description
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:
groups-ui/src/components/molecules/form-footer.tsx
Lines 83 to 86 in 598ca8e
| // 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.
Reactions are currently unavailable