From 41dcedd48fe54980048254c7161b58fde19a9f34 Mon Sep 17 00:00:00 2001 From: Beverly Nguyen Date: Thu, 13 Mar 2025 15:54:14 -0700 Subject: [PATCH] update to nav --- app/main/views/index.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/app/main/views/index.py b/app/main/views/index.py index 854f2411a..6341d1798 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -261,14 +261,8 @@ def why_text_messaging(): @main.route("/notify-service-ending") @user_is_logged_in def notify_service_ending(): - user_is_authenticated = current_user.is_authenticated - user_is_platform_admin = getattr(current_user, "platform_admin", False) - - navigation_links = about_notify_nav() if not (user_is_authenticated or user_is_platform_admin) else None - return render_template( "views/notify-service-ending.html", - navigation_links=navigation_links )