From 2599dc2672945a5b39dafd1b119f3894c007655d Mon Sep 17 00:00:00 2001 From: Jai Agrawal <18202329+Geometrically@users.noreply.github.com> Date: Sat, 28 Jun 2025 15:00:40 -0700 Subject: [PATCH] Disable ads for logged in users (web) (#3858) * Disable ads for logged in users (web) * Fix lint --- apps/frontend/src/pages/[type]/[id].vue | 7 +------ apps/frontend/src/pages/collection/[id].vue | 5 +---- apps/frontend/src/pages/organization/[id].vue | 5 +---- apps/frontend/src/pages/search/[searchProjectType].vue | 7 +------ apps/frontend/src/pages/user/[id].vue | 5 +---- 5 files changed, 5 insertions(+), 24 deletions(-) diff --git a/apps/frontend/src/pages/[type]/[id].vue b/apps/frontend/src/pages/[type]/[id].vue index 4b572120..cf25969b 100644 --- a/apps/frontend/src/pages/[type]/[id].vue +++ b/apps/frontend/src/pages/[type]/[id].vue @@ -762,12 +762,7 @@ :tags="tags" class="card flex-card experimental-styles-within" /> - + - + @@ -492,7 +490,6 @@ const route = useNativeRoute(); const auth = await useAuth(); const cosmetics = useCosmetics(); const tags = useTags(); -const flags = useFeatureFlags(); const isEditing = ref(false); diff --git a/apps/frontend/src/pages/organization/[id].vue b/apps/frontend/src/pages/organization/[id].vue index 6dfdc57d..6a93ecd6 100644 --- a/apps/frontend/src/pages/organization/[id].vue +++ b/apps/frontend/src/pages/organization/[id].vue @@ -146,9 +146,7 @@ - + Members @@ -291,7 +289,6 @@ const user = await useUser(); const cosmetics = useCosmetics(); const route = useNativeRoute(); const tags = useTags(); -const flags = useFeatureFlags(); const config = useRuntimeConfig(); let orgId = useRouteId(); diff --git a/apps/frontend/src/pages/search/[searchProjectType].vue b/apps/frontend/src/pages/search/[searchProjectType].vue index c12b92fa..179eedc7 100644 --- a/apps/frontend/src/pages/search/[searchProjectType].vue +++ b/apps/frontend/src/pages/search/[searchProjectType].vue @@ -55,12 +55,7 @@ }" aria-label="Filters" > - + - + @@ -386,7 +384,6 @@ const route = useNativeRoute(); const auth = await useAuth(); const cosmetics = useCosmetics(); const tags = useTags(); -const flags = useFeatureFlags(); const config = useRuntimeConfig(); const vintl = useVIntl();