Skip to content

Commit bcc067c

Browse files
committed
Fix time navigator steps
1 parent 7a7ace4 commit bcc067c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/web/src/app/time-navigator.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ function TimeNavigator({
6262
</p>
6363
<TimeChangeButton
6464
dispatchAppState={dispatchAppState}
65-
nextTimestamp={subDays(currentTimestamp, -1)}
65+
nextTimestamp={subDays(currentTimestamp, 1)}
6666
>
6767
← Day
6868
</TimeChangeButton>
6969
<TimeChangeButton
7070
dispatchAppState={dispatchAppState}
71-
nextTimestamp={subHours(currentTimestamp, -1)}
71+
nextTimestamp={subHours(currentTimestamp, 1)}
7272
>
7373
← Hour
7474
</TimeChangeButton>

0 commit comments

Comments
 (0)