Spaces:
Sleeping
Sleeping
Commit
·
437a7ee
1
Parent(s):
2f11d6d
fix: category body part
Browse files
src/seeder/seeders/5-exercises.seeder.ts
CHANGED
@@ -11,7 +11,7 @@ export default seederWrapper(Exercise, async () => {
|
|
11 |
const data = await Promise.all(dbStore.excerisesDataset.map(async function (e: IExerciseCSV) {
|
12 |
return {
|
13 |
name: e.name,
|
14 |
-
category:
|
15 |
exerciseType: e.type,
|
16 |
...(
|
17 |
e.type === ExerciseType.WEIGHT &&
|
|
|
11 |
const data = await Promise.all(dbStore.excerisesDataset.map(async function (e: IExerciseCSV) {
|
12 |
return {
|
13 |
name: e.name,
|
14 |
+
category: e.bodyPart,
|
15 |
exerciseType: e.type,
|
16 |
...(
|
17 |
e.type === ExerciseType.WEIGHT &&
|