Skip to content

Commit

Permalink
fix: Add counter easter egg
Browse files Browse the repository at this point in the history
  • Loading branch information
hampfh committed Sep 3, 2024
1 parent 32269cf commit 918f422
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/backoffice/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function App() {
</p>
<p>{DateTime.now().toFormat('yyyy-MM-dd')}</p>
<Button onClick={() => setCounter(counter + 1)}>
Click me: {counter}
Click me: {counter < 13 ? counter : counter + 1}
</Button>
</>
);
Expand Down

0 comments on commit 918f422

Please sign in to comment.