Skip to content

Commit 27be3d2

Browse files
committed
fix: use PrimeVue pi-sign-out icon instead of Material Symbols
- Revert Material Symbols due to loading issues - Use pi-sign-out icon which is already available in PrimeIcons
1 parent 69edc8f commit 27be3d2

File tree

4 files changed

+2
-15
lines changed

4 files changed

+2
-15
lines changed

frontend/nuxt.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ export default defineNuxtConfig({
136136
},
137137
},
138138

139-
css: ['~/assets/css/tailwind.css', '@fontsource/material-symbols-outlined'],
139+
css: ['~/assets/css/tailwind.css'],
140140

141141
supabase: {
142142
url: process.env.SUPABASE_PROJECT_URL,

frontend/package-lock.json

Lines changed: 0 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@
5656
"vue-tsc": "^3.1.0"
5757
},
5858
"dependencies": {
59-
"@fontsource/material-symbols-outlined": "^5.2.37",
6059
"@primeuix/themes": "^1.2.5",
6160
"@sentry/nuxt": "^10.17.0",
6261
"@vueuse/core": "^13.9.0",

frontend/src/pages/unsubscribe/success.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
<div class="m-auto text-center flex flex-col space-y-6 max-w-[30rem]">
33
<div>
44
<div class="inline-flex p-3">
5-
<span class="material-symbols-outlined text-7xl text-orange-400"
6-
>unsubscribe</span
7-
>
5+
<i class="pi pi-sign-out !text-7xl !text-orange-400"></i>
86
</div>
97
<div class="text-4xl font-bold font-serif">
108
{{ $t('unsubscribe.success_header') }}

0 commit comments

Comments
 (0)