Skip to content

Commit

Permalink
Consider sets without RPE to be hard sets
Browse files Browse the repository at this point in the history
  • Loading branch information
senier committed Sep 1, 2024
1 parent 67785c8 commit d25a4c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ impl TrainingSession {
.iter()
.map(|e| match e {
TrainingSessionElement::Set { rpe, .. } => {
if rpe.unwrap_or(0.0) >= 7.0 {
if rpe.unwrap_or(10.0) >= 7.0 {
Some(1_u32)
} else {
None
Expand Down

0 comments on commit d25a4c0

Please sign in to comment.