diff --git a/components/Nav/Drawer.vue b/components/Nav/Drawer.vue
index 56c60e841346e8c6b9308a705551c7067d45ad69..78cc918caf6c964aa57bdc70aa11e1304170585c 100644
--- a/components/Nav/Drawer.vue
+++ b/components/Nav/Drawer.vue
@@ -14,9 +14,10 @@ const { navigation } = useContent();
 // const drawer = ref(true);
 
 const computedNavigation = computed(() => {
+    console.log(navigation.value)
     return navigation.value
-        .filter(({ _path }) => {
-            return _path !== "/refseq" || _path !== "/predicted-structure";
+        .filter(({ layout }) => {
+            return layout !== "db"
         })
 
 });