From 5b2884c5d3e1e8668b01baef09f67e7105bf1cea Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Thu, 13 Jul 2023 17:24:24 -0700 Subject: [PATCH] refactor: :lipstick: privacy icon --- packages/client/src/pages/settings/index.vue | 2 +- packages/client/src/pages/settings/privacy.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/client/src/pages/settings/index.vue b/packages/client/src/pages/settings/index.vue index ee0d77b99..def40a277 100644 --- a/packages/client/src/pages/settings/index.vue +++ b/packages/client/src/pages/settings/index.vue @@ -100,7 +100,7 @@ const menuDef = computed(() => [ active: currentPage?.route.name === "profile", }, { - icon: "ph-lock-open ph-bold ph-lg", + icon: "ph-keyhole ph-bold ph-lg", text: i18n.ts.privacy, to: "/settings/privacy", active: currentPage?.route.name === "privacy", diff --git a/packages/client/src/pages/settings/privacy.vue b/packages/client/src/pages/settings/privacy.vue index c670934ae..08a388bd8 100644 --- a/packages/client/src/pages/settings/privacy.vue +++ b/packages/client/src/pages/settings/privacy.vue @@ -184,6 +184,6 @@ const headerTabs = $computed(() => []); definePageMetadata({ title: i18n.ts.privacy, - icon: "ph-lock-open ph-bold ph-lg", + icon: "ph-keyhole ph-bold ph-lg", });