diff --git a/app/templates/main_nav.html b/app/templates/main_nav.html
index e953e1332..8bc80dbad 100644
--- a/app/templates/main_nav.html
+++ b/app/templates/main_nav.html
@@ -9,9 +9,7 @@
{% endif %}
Templates
{% if current_user.has_permissions('view_activity') %}
- {% if current_service.can_upload_letters %}
- Uploads
- {% endif %}
+ Uploads
{% else %}
Sent messages
{% if current_service.has_jobs or current_service.can_upload_letters %}
diff --git a/tests/app/main/views/accounts/test_choose_accounts.py b/tests/app/main/views/accounts/test_choose_accounts.py
index 1fb550bbf..ec6150896 100644
--- a/tests/app/main/views/accounts/test_choose_accounts.py
+++ b/tests/app/main/views/accounts/test_choose_accounts.py
@@ -271,6 +271,7 @@ def test_should_show_back_to_service_if_user_belongs_to_service(
''
'Dashboard '
'Templates '
+ 'Uploads '
'Team members'
)
diff --git a/tests/app/test_navigation.py b/tests/app/test_navigation.py
index c32912ccc..55a6f8c02 100644
--- a/tests/app/test_navigation.py
+++ b/tests/app/test_navigation.py
@@ -169,6 +169,7 @@ def test_navigation_urls(
] == [
'/services/{}'.format(SERVICE_ONE_ID),
'/services/{}/templates'.format(SERVICE_ONE_ID),
+ '/services/{}/uploads'.format(SERVICE_ONE_ID),
'/services/{}/users'.format(SERVICE_ONE_ID),
'/services/{}/usage'.format(SERVICE_ONE_ID),
'/services/{}/service-settings'.format(SERVICE_ONE_ID),