Slack Dialog not closing on clicking the submit button #1126
-
Hi everyone, I was able to open the slack dialog using this OpenDialog method and the submit/cancel interactions return the expected result in the flow however, the dialog remains intact upon clicking submit with this generic error message - Any suggestions on how I can get the dialog to close gracefully on clicking the submit button? Any suggestions would be helpful, thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
For future reference: Was able to get this fixed by sending a status 200 and nil body |
Beta Was this translation helpful? Give feedback.
For future reference: Was able to get this fixed by sending a status 200 and nil body
w.WriteHeader(200)
w.Write(nil)