- {#if $session.teamId === '0'}
+ {#if $session.teamId === '0' && ownApplications.length > 0}
diff --git a/src/routes/databases/index.svelte b/src/routes/databases/index.svelte
index a15572b45..b38add542 100644
--- a/src/routes/databases/index.svelte
+++ b/src/routes/databases/index.svelte
@@ -52,7 +52,7 @@
- {#if $session.teamId === '0'}
+ {#if $session.teamId === '0' && ownDatabases.length > 0}
Your Team's Databases
{/if}
diff --git a/src/routes/destinations/index.svelte b/src/routes/destinations/index.svelte
index 66e324472..cc5e53583 100644
--- a/src/routes/destinations/index.svelte
+++ b/src/routes/destinations/index.svelte
@@ -63,7 +63,7 @@
{:else}
- {#if $session.teamId === '0'}
+ {#if $session.teamId === '0' && ownDestinations.length > 0}
Your Team's Destinations
{/if}
diff --git a/src/routes/services/index.svelte b/src/routes/services/index.svelte
index 806f8bbe5..2424c7ef4 100644
--- a/src/routes/services/index.svelte
+++ b/src/routes/services/index.svelte
@@ -57,7 +57,7 @@
{:else}
- {#if $session.teamId === '0'}
+ {#if $session.teamId === '0' && ownServices.length > 0}
Your Team's Applications
{/if}
diff --git a/src/routes/sources/index.svelte b/src/routes/sources/index.svelte
index b08563bf3..bf372c779 100644
--- a/src/routes/sources/index.svelte
+++ b/src/routes/sources/index.svelte
@@ -61,7 +61,7 @@
{:else}
- {#if $session.teamId === '0'}
+ {#if $session.teamId === '0' && ownSources.length > 0}
Your Team's Applications
{/if}