diff --git a/src/routes/applications/_Application.svelte b/src/routes/applications/_Application.svelte
index fb6a157c7..8f183eb13 100644
--- a/src/routes/applications/_Application.svelte
+++ b/src/routes/applications/_Application.svelte
@@ -15,6 +15,7 @@
import Docker from '$lib/components/svg/applications/Docker.svelte';
import Astro from '$lib/components/svg/applications/Astro.svelte';
import Eleventy from '$lib/components/svg/applications/Eleventy.svelte';
+ import { session } from '$app/stores';
const buildPack = application?.buildPack?.toLowerCase();
@@ -54,7 +55,9 @@
{/if}
Configuration missing
diff --git a/src/routes/destinations/index.svelte b/src/routes/destinations/index.svelte
index a7b6b9a7e..df186e35f 100644
--- a/src/routes/destinations/index.svelte
+++ b/src/routes/destinations/index.svelte
@@ -57,7 +57,9 @@
{destination.name}
-
Team {destination.teams[0].name}
+ {#if $session.teamId === '0'}
+
Team {destination.teams[0].name}
+ {/if}
{destination.network}
diff --git a/src/routes/services/index.svelte b/src/routes/services/index.svelte
index f2a6e5fb0..d590761a2 100644
--- a/src/routes/services/index.svelte
+++ b/src/routes/services/index.svelte
@@ -12,6 +12,7 @@
import UptimeKuma from '$lib/components/svg/services/UptimeKuma.svelte';
import Ghost from '$lib/components/svg/services/Ghost.svelte';
import MeiliSearch from '$lib/components/svg/services/MeiliSearch.svelte';
+ import { session } from '$app/stores';
export let services;
async function newService() {
@@ -74,7 +75,9 @@
{service.name}
-
Team {service.teams[0].name}
+ {#if $session.teamId === '0'}
+
Team {service.teams[0].name}
+ {/if}
{#if !service.type || !service.fqdn}
Configuration missing
diff --git a/src/routes/sources/index.svelte b/src/routes/sources/index.svelte
index d80579272..c57efdaa6 100644
--- a/src/routes/sources/index.svelte
+++ b/src/routes/sources/index.svelte
@@ -60,7 +60,9 @@
class:border-l-4={source.gitlabApp && !source.gitlabAppId}
>
{source.name}
-
Team {source.teams[0].name}
+ {#if $session.teamId === '0'}
+
Team {source.teams[0].name}
+ {/if}
{#if (source.type === 'gitlab' && !source.gitlabAppId) || (source.type === 'github' && !source.githubAppId && !source.githubApp?.installationId)}
Configuration missing