From 3e641e4936df97d2d0dc3344cdda65d15187d591 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=84=EC=8A=A4=ED=8A=B8=EB=A1=9C?= Date: Sat, 15 Mar 2025 00:29:18 +0900 Subject: [PATCH] POIIIIIIIII --- app/helpers/branding_helper.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/helpers/branding_helper.rb b/app/helpers/branding_helper.rb index 8201f36e3c..c2b833de9d 100644 --- a/app/helpers/branding_helper.rb +++ b/app/helpers/branding_helper.rb @@ -11,14 +11,14 @@ module BrandingHelper end def _logo_as_symbol_wordmark - content_tag(:svg, tag.use(href: '#logo-symbol-wordmark'), viewBox: '0 0 261 66', class: 'logo logo--wordmark') + image_tag(frontend_asset_path('images/logo-symbol-wordmark.png'), alt: 'Mastodon', class: 'logo logo--wordmark') end def _logo_as_symbol_icon - content_tag(:svg, tag.use(href: '#logo-symbol-icon'), viewBox: '0 0 79 79', class: 'logo logo--icon') + image_tag(frontend_asset_path('images/logo.png'), alt: 'Mastodon', class: 'logo logo--icon') end def render_logo - image_tag(frontend_asset_path('images/logo.svg'), alt: 'Mastodon', class: 'logo logo--icon') + image_tag(frontend_asset_path('images/logo.png'), alt: 'Mastodon', class: 'logo logo--icon') end end