From 15ca5bec614b9751e5397f355d153ffb5684cc32 Mon Sep 17 00:00:00 2001 From: Gabriel Hansson Date: Fri, 3 Nov 2023 22:00:26 +0100 Subject: [PATCH] docs: fix `` url in 12_transition.md (#1980) --- docs/book/src/async/12_transition.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/book/src/async/12_transition.md b/docs/book/src/async/12_transition.md index 668785fba6..85db85b3fc 100644 --- a/docs/book/src/async/12_transition.md +++ b/docs/book/src/async/12_transition.md @@ -1,6 +1,6 @@ # `` -You’ll notice in the `` example that if you keep reloading the data, it keeps flickering back to `"Loading..."`. Sometimes this is fine. For other times, there’s [``](https://docs.rs/leptos/latest/leptos/fn.Suspense.html). +You’ll notice in the `` example that if you keep reloading the data, it keeps flickering back to `"Loading..."`. Sometimes this is fine. For other times, there’s [``](https://docs.rs/leptos/latest/leptos/fn.Transition.html). `` behaves exactly the same as ``, but instead of falling back every time, it only shows the fallback the first time. On all subsequent loads, it continues showing the old data until the new data are ready. This can be really handy to prevent the flickering effect, and to allow users to continue interacting with your application.