diff --git a/src/App.vue b/src/App.vue
index 53ce34e..0bcf817 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -87,7 +87,7 @@ provide('activeSection', activeSection)
- Home
-
- {{ activeSection === 'saved' ? 'Saved Jobs' : activeSection.charAt(0).toUpperCase() + activeSection.slice(1) }}
+ {{ activeSection === 'saved' ? 'Saved Jobs' : (activeSection ? activeSection.charAt(0).toUpperCase() + activeSection.slice(1) : '') }}