This commit is contained in:
Trey t
2024-06-09 09:58:57 -05:00
parent 995a179ba6
commit 7b67d85b9c
2 changed files with 11 additions and 3 deletions

View File

@@ -81,4 +81,12 @@ struct Exercise: Identifiable, Codable, Equatable {
}
return name
}
var spacedMuscleGroups: String {
return muscleGroups.replacingOccurrences(of: ",", with: ", ")
}
var spacedEquipmentRequired: String {
return equipmentRequired.replacingOccurrences(of: ",", with: ", ")
}
}