From b8ee02b184ff230240b8b4247db82aab92c0c58f Mon Sep 17 00:00:00 2001 From: Sophia Michelle Andren <20441876+sandren@users.noreply.github.com> Date: Mon, 13 Jan 2025 07:40:11 +0100 Subject: [PATCH] fix(website): repair broken images (#2930) --- docs/guides/debugging.mdx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/guides/debugging.mdx b/docs/guides/debugging.mdx index 726887f898..d3069055b0 100644 --- a/docs/guides/debugging.mdx +++ b/docs/guides/debugging.mdx @@ -78,7 +78,8 @@ function Counter() { Now if we try `setCount`, we can see that the Redux Dev Tools logs those changes immediately. -![](https://cdn.discordapp.com/attachments/688751221464367186/930857764719329290/unknown.png) +![](https://lh3.googleusercontent.com/pw/AP1GczMgeYQOyCAc69gJIAcRBtKO9BOUEE3SQB5Bl-7IScJfChWGnVb3B0OmlhrjK8caQVnj-HtyN1cpv1l1K9kE4pxwapUwu_2OB-dO_G18ZUC1NbDJFiXYRW9jX8OeDBJeWg1Qx9_IdkfoaoIin90A8gSE=w828-h268-s-no-gm) +![]() #### Time travel @@ -89,12 +90,12 @@ You can hover on each action you see in the devtools and see the **Jump** option If we don't record changes on atoms, we can stop watching those using the **Pausing** feature. -![](https://cdn.discordapp.com/attachments/688751221464367186/930893033925378118/unknown.png) +![](https://lh3.googleusercontent.com/pw/AP1GczP8hTBFtwlx0BJGGbbcXgfhMNG2Vz_uozdVnrTJHwMb1gKx55TP59WgvsMwgIyExwscgYZSpYDmxCJXjk_pKy6wP-K-0p287lkRXdTZEf074xUZr8fnIpkwg-zN14VXZ2STet1sVgTTawm49mc8Oygb=w395-h87-s-no-gm) #### Dispatch It's possible to set values on atoms with the **Dispatch** feature. You can do that by clicking on the **Show Dispatcher** button. -![](https://cdn.discordapp.com/attachments/688751221464367186/930895694846361680/unknown.png) +![](https://lh3.googleusercontent.com/pw/AP1GczMNn6aXTA7K8ZFzUj17I40cm0o7joOG6E76Q6UVnXYJ3TO7ItRI6Jr1EIxogfY9P2xkiQfyYqB7_aU--R_vdSyNXAtTfPuxxLymApRoZov0-6ZHS7mmxxxD4Ku1JnqTRyPyZaQHyQPkq8j4CciQaISV=w832-h149-s-no-gm) This would set the `countAtoms`'s value to `5`. > We should note that the value will be parsed by JSON.parse, so pass supported values.