Fix bad save

This commit is contained in:
zandercymatics 2024-01-12 11:05:03 -07:00
parent 6835397f97
commit 9f95b92aee
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -473,7 +473,7 @@ class DotgovDomain(ApplicationWizard):
response = super().post(request, *args, **kwargs)
# Set the DraftDomain to "complete"
self.application.requested_domain.is_incomplete = False
self.application.requested_domain.save()
self.application.save()
return response
class Purpose(ApplicationWizard):