refactor: 💄 privacy icon

This commit is contained in:
ThatOneCalculator 2023-07-13 17:24:24 -07:00
parent a82ef942b4
commit 5b2884c5d3
No known key found for this signature in database
GPG key ID: 8703CACD01000000
2 changed files with 2 additions and 2 deletions

View file

@ -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",

View file

@ -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",
});
</script>