We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ff545f commit 2a47861Copy full SHA for 2a47861
1 file changed
src/App.js
@@ -187,11 +187,11 @@ const App = () => {
187
}
188
}, [send, edgeState]);
189
190
- useEffect(() => {
191
- if (current.value === 'configuring_project' && fields.length === 0) {
192
- send('SUBMIT');
193
- }
194
- }, [current]);
+ if (current.value === 'configuring_project' && fields.length === 0) {
+ console.debug('no fields defined; skiping project configuration.');
+ send('SUBMIT');
+ return 'Loading...';
+ }
195
196
const fork = async ({ accountId, apiToken, event }) => {
197
const regex = /github.com\/(?<owner>[^/]+)\/(?<repo>[^/]+)/;
0 commit comments