Skip to content

Commit

Permalink
fix double container in profile page content
Browse files Browse the repository at this point in the history
  • Loading branch information
flipvh committed Oct 8, 2024
1 parent ddd8b70 commit f2d9587
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions frontend/src/modules/users/profile-page-content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,7 @@ const ProfilePageContent = ({ sheet, userId, organizationId }: { userId: string;

console.debug('data available in profile page content:', sheet, userId, organizationId);

return (
<div className="container">
<ContentPlaceholder Icon={Squirrel} title={'Default user page'} />
</div>
);
return <ContentPlaceholder Icon={Squirrel} title={'Default user page'} />;
};

export default ProfilePageContent;

0 comments on commit f2d9587

Please sign in to comment.