From ef73f00dbca89dc0ce06567a9fd07905ba816834 Mon Sep 17 00:00:00 2001 From: asaki222 Date: Thu, 5 Dec 2024 13:22:23 -0500 Subject: [PATCH] fixed the space finally IV --- src/registrar/views/index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/registrar/views/index.py b/src/registrar/views/index.py index aee3c4ef0..a3b685203 100644 --- a/src/registrar/views/index.py +++ b/src/registrar/views/index.py @@ -8,5 +8,5 @@ def index(request): if request and request.user and request.user.is_authenticated: # This controls the creation of a new domain request in the wizard context["user_domain_count"] = request.user.get_user_domain_ids(request).count() - + return render(request, "home.html", context)