From 5ad2ba2184e9047907d0f4e2ec98c23787801fff Mon Sep 17 00:00:00 2001 From: robertofrontado Date: Thu, 3 Nov 2022 11:53:34 +0100 Subject: [PATCH] fix link in learning fusion tutorial docs --- .../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). ---