diff --git a/exercises/07.state-reducer/01.problem.reducer/README.mdx b/exercises/07.state-reducer/01.problem.reducer/README.mdx
index dd89d455..f42e2817 100644
--- a/exercises/07.state-reducer/01.problem.reducer/README.mdx
+++ b/exercises/07.state-reducer/01.problem.reducer/README.mdx
@@ -1,5 +1,7 @@
# State Reducer
+
+
👨💼 In this exercise, we want to prevent the toggle from updating the toggle
state after it's been clicked 4 times in a row before resetting. We could easily
add that logic to our reducer, but instead we're going to apply a computer
diff --git a/exercises/07.state-reducer/01.solution.reducer/README.mdx b/exercises/07.state-reducer/01.solution.reducer/README.mdx
index 9b2c38db..b3a0bbc7 100644
--- a/exercises/07.state-reducer/01.solution.reducer/README.mdx
+++ b/exercises/07.state-reducer/01.solution.reducer/README.mdx
@@ -1,5 +1,7 @@
# State Reducer
+
+
👨💼 This is a powerful example of inversion of control that allows users to
overwrite our entire reducer. But it could be exhausting to users to have to
duplicate most of our reducer just to change a few things. So let's address that