Remove camera icon from profile

The camera icon in the profile header has been removed as profile picture functionality is not yet supported.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-15 04:35:44 +00:00
parent ca18031388
commit b162b6def3

View File

@@ -1,6 +1,6 @@
import React from 'react'; import React from 'react';
import { ArrowLeft, User, Camera } from 'lucide-react'; import { ArrowLeft, User } from 'lucide-react';
import { useNavigate } from 'react-router-dom'; import { useNavigate } from 'react-router-dom';
import { Button } from '@/components/ui/button'; import { Button } from '@/components/ui/button';
import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar'; import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar';
@@ -31,12 +31,6 @@ const ProfileHeader = () => {
<User size={40} /> <User size={40} />
</AvatarFallback> </AvatarFallback>
</Avatar> </Avatar>
<Button
size="sm"
className="absolute bottom-0 right-0 rounded-full bg-neuro-income"
>
<Camera size={14} />
</Button>
</div> </div>
</div> </div>
</header> </header>