From 80b45fbb7876221b997eb86e8138fc37478d857b Mon Sep 17 00:00:00 2001 From: stvnrlly Date: Fri, 14 Oct 2022 00:11:41 +0000 Subject: [PATCH] switch to team preference for no default org type selection --- app/main/views/add_service.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/main/views/add_service.py b/app/main/views/add_service.py index af0663a99..d2424307f 100644 --- a/app/main/views/add_service.py +++ b/app/main/views/add_service.py @@ -47,7 +47,9 @@ def _create_example_template(service_id): def add_service(): default_organisation_type = current_user.default_organisation_type form = CreateServiceForm( - organisation_type="federal" + # avoid setting a default for now; the US gov email addresses aren't as useful as the UK + # ones for guessing the org type + organisation_type=None ) if form.validate_on_submit():