diff --git a/packages/frontend/src/pages/flash/flash-index.vue b/packages/frontend/src/pages/flash/flash-index.vue
index 86ffdc1463..12c94c9f6d 100644
--- a/packages/frontend/src/pages/flash/flash-index.vue
+++ b/packages/frontend/src/pages/flash/flash-index.vue
@@ -87,7 +87,7 @@ const headerTabs = computed(() => [{
}, {
key: 'liked',
title: i18n.ts._play.liked,
- icon: 'ph-heart ph-bold ph-lg',
+ icon: 'ti ti-heart',
}]);
definePageMetadata(() => ({
diff --git a/packages/frontend/src/pages/flash/flash.vue b/packages/frontend/src/pages/flash/flash.vue
index f61047d854..1943b5baba 100644
--- a/packages/frontend/src/pages/flash/flash.vue
+++ b/packages/frontend/src/pages/flash/flash.vue
@@ -19,8 +19,8 @@ SPDX-License-Identifier: AGPL-3.0-only
{{ post.likedCount }}
- {{ post.likedCount }}
+ {{ post.likedCount }}
diff --git a/packages/frontend/src/pages/list.vue b/packages/frontend/src/pages/list.vue
index d51b092c2c..077ad4ec29 100644
--- a/packages/frontend/src/pages/list.vue
+++ b/packages/frontend/src/pages/list.vue
@@ -27,7 +27,7 @@ SPDX-License-Identifier: AGPL-3.0-only
{{ page.likedCount }}
- {{ page.likedCount }}
+ {{ page.likedCount }}
diff --git a/packages/frontend/src/pages/pages.vue b/packages/frontend/src/pages/pages.vue
index a5e0b2c1f2..b2990f92f3 100644
--- a/packages/frontend/src/pages/pages.vue
+++ b/packages/frontend/src/pages/pages.vue
@@ -85,7 +85,7 @@ const headerTabs = computed(() => [{
}, {
key: 'liked',
title: i18n.ts._pages.liked,
- icon: 'ph-heart ph-bold ph-lg',
+ icon: 'ti ti-heart',
}]);
definePageMetadata(() => ({
diff --git a/packages/frontend/vite.config.ts b/packages/frontend/vite.config.ts
index bb8f92e436..336bde077c 100644
--- a/packages/frontend/vite.config.ts
+++ b/packages/frontend/vite.config.ts
@@ -98,6 +98,9 @@ export function getConfig(): UserConfig {
'ti ti-pencil': 'ph-pencil-simple ph-bold ph-lg',
'ti ti-arrow-right': 'ph-arrow-right ph-bold ph-lg',
'ti ti-pin': 'ph-push-pin ph-bold ph-lg',
+ 'ti ti-heart': 'ph-heart ph-bold ph-lg',
+ 'ti ti-heart-filled': 'ph-heart ph-bold ph-lg',
+ 'ti ti-heart-plus': 'ph-heart ph-bold ph-lg',
},
}),
...process.env.NODE_ENV === 'production'