Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
aramattamara committed Mar 5, 2025
1 parent c379fad commit 6205e2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/HeatMap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const HeatMap = ({ className = '' }: { className?: string }) => {
}, [username, data])

return (
<div className={`bg-gray-900 relative h-32 items-center justify-center ${className}`}>
<div className={`relative h-32 items-center justify-center bg-gray-900 ${className}`}>
<canvas ref={canvasRef} style={{ display: 'none' }}></canvas>
{privateContributor ? (
<div className="h-32 bg-owasp-blue"></div>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/UserDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const UserDetailsPage = () => {
{ label: 'Summary', value: user?.bio || '' },
{ label: 'Joined', value: formatDate(user.createdAt) },
{ label: 'Company', value: user?.company || '' },
{ label: 'Email', value: user?.email || ''},
{ label: 'Email', value: user?.email || '' },
].filter((detail) => detail.value)

const userStats = [
Expand Down

0 comments on commit 6205e2a

Please sign in to comment.