From a3bd9c53cd51859ee86a5cbfb8c72d780b6f90c7 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sat, 15 Mar 2025 04:31:52 +0000 Subject: [PATCH] Refactor profile management text Update the description text in ProfileManagement.tsx. --- src/pages/Settings.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/pages/Settings.tsx b/src/pages/Settings.tsx index 54ae367..9db19ac 100644 --- a/src/pages/Settings.tsx +++ b/src/pages/Settings.tsx @@ -1,8 +1,10 @@ + import React from 'react'; import { useNavigate } from 'react-router-dom'; import NavBar from '@/components/NavBar'; import { User, CreditCard, Bell, Lock, HelpCircle, LogOut, ChevronRight } from 'lucide-react'; import { cn } from '@/lib/utils'; + const SettingsOption = ({ icon: Icon, label, @@ -29,6 +31,7 @@ const SettingsOption = ({ ; }; + const Settings = () => { const navigate = useNavigate(); return
@@ -52,7 +55,7 @@ const Settings = () => { {/* Settings Options */}

계정

- navigate('/profile-management')} /> + navigate('/profile-management')} /> navigate('/notification-settings')} />
@@ -75,4 +78,5 @@ const Settings = () => {
; }; -export default Settings; \ No newline at end of file + +export default Settings;