From 4b5edb9a99f8fb2b160f1d045f7d3bf1569ec7ea Mon Sep 17 00:00:00 2001 From: Prospector <6166773+Prospector@users.noreply.github.com> Date: Mon, 24 Aug 2026 16:29:24 -0700 Subject: [PATCH] update not found icons (#7289) --- apps/frontend/src/pages/[type]/[project].vue | 2 +- apps/frontend/src/pages/user/[user].vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/frontend/src/pages/[type]/[project].vue b/apps/frontend/src/pages/[type]/[project].vue index 7cfb8e3550..c3fb2865f0 100644 --- a/apps/frontend/src/pages/[type]/[project].vue +++ b/apps/frontend/src/pages/[type]/[project].vue @@ -2075,7 +2075,7 @@ if (!route.name.startsWith('type-project-settings')) { ogImage: () => project.value ? (project.value?.icon_url ?? 'https://cdn-raw.modrinth.com/placeholder-square.png') - : 'https://cdn-raw.modrinth.com/not-found-transparent.png', + : 'https://cdn-raw.modrinth.com/not-found.png', ogUrl: createCanonicalUrl, robots: () => (project.value?.status === 'approved' ? 'all' : 'noindex'), }) diff --git a/apps/frontend/src/pages/user/[user].vue b/apps/frontend/src/pages/user/[user].vue index 26fa5084f6..c5face48ef 100644 --- a/apps/frontend/src/pages/user/[user].vue +++ b/apps/frontend/src/pages/user/[user].vue @@ -112,7 +112,7 @@ useSeoMeta({ ogImage: () => prefetchedUser ? (prefetchedUser?.avatar_url ?? 'https://cdn-raw.modrinth.com/placeholder-circle.png') - : 'https://cdn-raw.modrinth.com/not-found-transparent.png', + : 'https://cdn-raw.modrinth.com/not-found-circle.png', }) const projectCreateModal = ref | null>(null)