Skip to content

Commit

Permalink
deep scan fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ishankoradia committed Jul 11, 2023
1 parent b64fad6 commit 4290532
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Connections/Connections.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export const Connections = () => {
if (response?.detail) errorToast(response.detail, [], toastContext);

// if flow run id is not present, something went wrong
if (!response.flow_run_id)
if (!response?.flow_run_id)
errorToast('Something went wrong', [], toastContext);

// Poll and show logs till flow run is either completed or failed
Expand Down

0 comments on commit 4290532

Please sign in to comment.