Skip to content

Commit

Permalink
total commits updated
Browse files Browse the repository at this point in the history
  • Loading branch information
darsan-in committed Jul 9, 2024
1 parent 9d2bcce commit 3d439ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/src/components/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default function HomePage() {
<h1 className="text-primary font-medium">
<ShortMessage
totalProjects={localMeta.totalProjects ?? 0}
totalCommits={localMeta.totalCommits ?? 0}
totalCommits={497}
/>
</h1>

Expand Down
2 changes: 1 addition & 1 deletion app/src/components/ui-utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const ShortMessage = ({
return (
<>
{totalProjects ? (
`Over ${totalCommits} commits and ${totalProjects} projects completed`
`Over ${totalCommits}+ commits and ${totalProjects} projects completed`
) : (
<Spinner size={20} />
)}
Expand Down

0 comments on commit 3d439ba

Please sign in to comment.