diff --git a/exercises/04.mutations/05.solution.intent/README.mdx b/exercises/04.mutations/05.solution.intent/README.mdx
index b84d2b6a7..6d0a49136 100644
--- a/exercises/04.mutations/05.solution.intent/README.mdx
+++ b/exercises/04.mutations/05.solution.intent/README.mdx
@@ -6,3 +6,9 @@
notes. In the future, we can handle creating new notes, but that will require
logging in as a user and associating the note with that user. We'll get to that
in the future!
+
+🦉 You may have noticed that Remix is automatically canceling requests if you
+hit the delete button multiple times. This is an awesome feature of Remix. Feel
+free to learn more by watching this Epic Web tip:
+
+
diff --git a/exercises/05.scripting/02.problem.scroll-restoration/README.mdx b/exercises/05.scripting/02.problem.scroll-restoration/README.mdx
index 7766f7c9f..313aba453 100644
--- a/exercises/05.scripting/02.problem.scroll-restoration/README.mdx
+++ b/exercises/05.scripting/02.problem.scroll-restoration/README.mdx
@@ -47,4 +47,3 @@ Go ahead and add the `preventScrollReset` prop to those links.
- [📜 `` on Remix](https://remix.run/docs/en/main/components/scroll-restoration)
- [📜 `` on React Router](https://reactrouter.com/en/main/components/scroll-restoration) (the remix implementation is built on top of this)
-- [📜 Scroll Management with Remix and React Router](https://youtu.be/4_H8j3rkpjI)
diff --git a/exercises/05.scripting/02.solution.scroll-restoration/README.mdx b/exercises/05.scripting/02.solution.scroll-restoration/README.mdx
index c4e009eac..c0b2bcfdb 100644
--- a/exercises/05.scripting/02.solution.scroll-restoration/README.mdx
+++ b/exercises/05.scripting/02.solution.scroll-restoration/README.mdx
@@ -6,3 +6,8 @@
automatically that we need to think about once we bring JavaScript into the
picture. Luckily Remix handles a lot of that stuff for us, but we do need to
think about it and make sure we're using the features Remix provides.
+
+