From 123e88ced286be6c46d53ea76fd7adb94727c8e5 Mon Sep 17 00:00:00 2001 From: Jonatan Garbuyo <58077441+JonatanGarbuyo@users.noreply.github.com> Date: Mon, 25 Sep 2023 21:33:31 -0300 Subject: [PATCH] Update building-the-ui.md fix link URL --- .../docs/learning-fusionjs-tutorial/building-the-ui.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/learning-fusionjs-tutorial/building-the-ui.md b/documentation/docs/learning-fusionjs-tutorial/building-the-ui.md index 029649c..7fc032c 100644 --- a/documentation/docs/learning-fusionjs-tutorial/building-the-ui.md +++ b/documentation/docs/learning-fusionjs-tutorial/building-the-ui.md @@ -91,7 +91,7 @@ Before we move on, take a minute to look at the code and familiarize yourself wi Obviously, we could call this current implementation done but given that the state will be lost on a refresh, we can do better here. While using something like `localStorage` would work to save the data between page refreshes, let's persist this data on the server instead so that on subsequent reloads (no matter which client we use), our to-do list data will be retrieved on page load. -In order to do this, we'll need to build some Fusion.js plugins to accomplish this. We'll dive into this in the [next section](/docs/learning-fusionjs-tutorial/adding-data). +In order to do this, we'll need to build some Fusion.js plugins to accomplish this. We'll dive into this in the [next section](/docs/learning-fusionjs-tutorial/loading-data). ---