Skip to content

Commit

Permalink
Remove breadcrumb from user page
Browse files Browse the repository at this point in the history
  • Loading branch information
AnumQ committed Aug 1, 2024
1 parent b3f3ecf commit e9a0025
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/routes/user/route.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ export let loader = async () => {

export default function Index() {
const user = useLoaderData<IMeData>();
const breadcrumbs = [{ name: 'Profile', link: '/user' }];
// const breadcrumbs = [{ name: 'Profile', link: '/user' }];

return (
<div>
<Breadcrumbs breadcrumbs={breadcrumbs} />
{/* <Breadcrumbs breadcrumbs={breadcrumbs} /> */}
<InternalPageHeader title={'User Information'} icon={PersonIcon} />
<div style={{ marginBottom: '1rem' }}>
<Label>Full Name:</Label>
Expand Down

0 comments on commit e9a0025

Please sign in to comment.