chore(web): adjust profile icon

This commit is contained in:
Ran
2026-03-30 15:19:12 +08:00
parent dd13e89469
commit fed7b68bd3
@@ -50,7 +50,7 @@ import { computed, type Component } from 'vue'
import { storeToRefs } from 'pinia'
import { useRouter, useRoute } from 'vue-router'
import { useI18n } from 'vue-i18n'
import { ChevronLeft, Bot, Boxes, Globe, Brain, Volume2, Mail, AppWindow, ChartLine, Settings } from 'lucide-vue-next'
import { ChevronLeft, Bot, Boxes, Globe, Brain, Volume2, Mail, AppWindow, ChartLine, User } from 'lucide-vue-next'
import { useChatSelectionStore } from '@/store/chat-selection'
import {
Sidebar,
@@ -133,7 +133,7 @@ const navItems = computed<{ title: string; name: string; icon: Component }[]>(()
{
title: t('sidebar.profile'),
name: 'profile',
icon: Settings,
icon: User,
},
])
</script>