## The problem
Currently I am utilizing the Slack SDK for Python using AWS Lambda and whenever I submit the view submission the modal is not updated. I get a response from the views.update API but it does not update on slack. Not sure what the issue is here, I have tried multiple searches on the web.
## The fix
If views.update returns ok but the Slack modal never updates, check the shape of what you ack: the reporter had wrapped their new view in an extra top-level 'view' key, and removing the nested key fixed it. The ack payload should be the view object itself, not { view: {...} }. Use ack(response_action='update', view=your_view_dict).