Skip to content

Commit

Permalink
fit: increase non hr exp
Browse files Browse the repository at this point in the history
  • Loading branch information
hellos3b committed Feb 18, 2024
1 parent c1a59b5 commit 4e310fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/fitness/src/PostWorkout.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const expFromStreams = (maxHR, streams) => {
return exp;
};

const expFromTime = (duration) => duration / 60;
const expFromTime = (duration) => (duration / 60) * 5;

const workoutFromActivity = (user, activity, streams) => {
const exp = user.maxHR ? expFromStreams(user.maxHR, streams) : null;
Expand Down

0 comments on commit 4e310fb

Please sign in to comment.