diff options
author | Mo Tarbin <mhed.t91@gmail.com> | 2024-07-16 19:37:18 -0400 |
---|---|---|
committer | Mo Tarbin <mhed.t91@gmail.com> | 2024-07-16 19:37:18 -0400 |
commit | 7f4e5928492a71135f6817874461c80a0ecc155c (patch) | |
tree | 1527356c61e0bc11e4fbc3d3d19bdf17d11596c9 /src/views/Landing | |
parent | 93512eb6665e7d35660db133319be54ed1c09232 (diff) | |
download | donetick-frontend-7f4e5928492a71135f6817874461c80a0ecc155c.tar.gz donetick-frontend-7f4e5928492a71135f6817874461c80a0ecc155c.tar.bz2 donetick-frontend-7f4e5928492a71135f6817874461c80a0ecc155c.zip |
Add SkipChore function to Fetcher utility module, Update Loading Comp
Diffstat (limited to '')
-rw-r--r-- | src/views/Landing/DemoHistory.jsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/views/Landing/DemoHistory.jsx b/src/views/Landing/DemoHistory.jsx index 2c713f1..4e0f45e 100644 --- a/src/views/Landing/DemoHistory.jsx +++ b/src/views/Landing/DemoHistory.jsx @@ -7,7 +7,7 @@ const DemoHistory = () => { { id: 32, choreId: 12, - completedAt: moment().format(), + completedAt: moment().hour(4).format(), completedBy: 1, assignedTo: 1, notes: null, @@ -25,8 +25,8 @@ const DemoHistory = () => { { id: 31, choreId: 12, - completedAt: moment().day(-10).format(), - completedBy: 1, + completedAt: moment().day(-10).hour(1).format(), + completedBy: 2, assignedTo: 1, notes: null, dueDate: moment().day(-10).format(), |