diff --git a/src/registrar/context_processors.py b/src/registrar/context_processors.py index 53f6e8ae7..7ae07e0fc 100644 --- a/src/registrar/context_processors.py +++ b/src/registrar/context_processors.py @@ -97,5 +97,5 @@ def portfolio_permissions(request): def is_widescreen_mode(request): - widescreen_paths = ["/domains/", "/requests/", "/members/"] + widescreen_paths = ["/domains/", "/requests/", "/members/", "/request/"] return {"is_widescreen_mode": any(path in request.path for path in widescreen_paths) or request.path == "/"}