Skip to content

Commit 6ae0c8e

Browse files
authored
Add hint to level 2 and fix order of inputs on level 1 (#164)
1 parent 3a36ffa commit 6ae0c8e

File tree

2 files changed

+5
-20
lines changed

2 files changed

+5
-20
lines changed

src/components/shared/ExerciseSide.tsx

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -108,25 +108,6 @@ ExerciseSideProps): JSX.Element {
108108
</div>
109109
</div>
110110
);
111-
112-
/*<div className="exercise-box">
113-
<AxisParent
114-
axisMarkers={[
115-
[-2, -1, 0, 1, 2],
116-
[-1, 0, 1, 2],
117-
]}
118-
axisLabels={[
119-
['A', '', '', 'B', 'C'],
120-
['A', '', '', 'B'],
121-
]}
122-
toNextExercise={() => {
123-
setCompleteExercises(completeExercises + 1);
124-
incrementExercise();
125-
return;
126-
}}
127-
/>
128-
</div>
129-
);*/
130111
} else if (exercises[displayExercise] == 'graph1') {
131112
curExercise = (
132113
<div>
@@ -315,7 +296,7 @@ ExerciseSideProps): JSX.Element {
315296
],
316297
]}
317298
unitCircleLabels={[
318-
['A', 'C', '', 'B', ''],
299+
['A', 'B', '', 'C', ''],
319300
['', 'A', 'B', '', 'C'],
320301
['', '', 'A', 'B', '', 'C', ''],
321302
['', 'A', '', '', 'B', '', 'C'],

src/components/shared/LessonSide/LessonSideContent.JSON

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
{
2020
"id": "lesson-side-body",
2121
"text": "When looking at these numbers, remember that the number to move sideways comes first. A positive number means you move right, and a negative number means you move left. And when moving up and down with the second number, a positive number means you move up and a negative means down."
22+
},
23+
{
24+
"id": "lesson-side-body",
25+
"text": "Hint: The turtle icon on the exercises is always at the position 0."
2226
}
2327
],
2428
"3": [

0 commit comments

Comments
 (0)