diff --git a/packages/client/src/navbar.ts b/packages/client/src/navbar.ts index 6b27b42cf7..31e6cd64a4 100644 --- a/packages/client/src/navbar.ts +++ b/packages/client/src/navbar.ts @@ -29,7 +29,7 @@ export const navbarItemDef = reactive({ }, followRequests: { title: 'followRequests', - icon: 'ti ti-user-clock', + icon: 'ti ti-user-plus', show: computed(() => $i != null && $i.isLocked), indicated: computed(() => $i != null && $i.hasPendingReceivedFollowRequest), to: '/my/follow-requests', diff --git a/packages/client/src/pages/follow-requests.vue b/packages/client/src/pages/follow-requests.vue index 2bef35746e..b20679ccc1 100644 --- a/packages/client/src/pages/follow-requests.vue +++ b/packages/client/src/pages/follow-requests.vue @@ -67,7 +67,7 @@ const headerTabs = $computed(() => []); definePageMetadata(computed(() => ({ title: i18n.ts.followRequests, - icon: 'ti ti-user-clock', + icon: 'ti ti-user-plus', })));