Skip to content

Commit

Permalink
timer reference info component fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dearlordylord committed Feb 8, 2024
1 parent 2025655 commit 1981983
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ exercise timers as immutable state machines on Typescript

TODO keywords: immutable/functional, (optionally) deterministic, 0 dependency, timer with time concern separated/abstracted away

TODO reference implementations: web, react-native
TODO reference implementations: react-native

TODO reference-metronome

TODO publish properly (when NX really supports it) - or move to pnpm workspaces, publish from there
2 changes: 1 addition & 1 deletion reference-react/src/lib/reference-react.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const runningStages: {
running: ({ viewValue }) => (
<div>
Running: {viewValue.timerStats.round.kind}:{' '}
{Number(viewValue.timerStats.round.left)}/
{Number(viewValue.timerStats.round.left)} of {Number(viewValue.timerStats.round.current)}/
{Number(viewValue.timerStats.rounds)}
</div>
),
Expand Down

0 comments on commit 1981983

Please sign in to comment.