Skip to content

Commit

Permalink
Merge pull request #22 from JayGaba/jayesh/fix-date
Browse files Browse the repository at this point in the history
Fix the date in taskbar
  • Loading branch information
Chetan-KK authored Oct 11, 2024
2 parents eeb6fca + e5ab164 commit b9528b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/Taskbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default function Taskbar(props) {
{date.getHours() + ":" + date.getMinutes()}
</p>
<p>
{date.getDate() + "-" + date.getMonth() + 1 + "-" + date.getFullYear()}
{date.getDate() + "-" + (date.getMonth() + 1) + "-" + date.getFullYear()}
</p>
</div>
<div className="icon flex notification">
Expand Down

0 comments on commit b9528b2

Please sign in to comment.