Skip to content

Commit 93c51e9

Browse files
committed
Fix redirects
1 parent 9624481 commit 93c51e9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/resources/data-representation/app-state.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ App state variables are specific variables that hold the current state of an app
1616

1717
App state variables should be used in scenarios where the same data needs to be accessed and modified from multiple locations within the app. For instance, in a shopping cart app, items in a user's cart are usually accessible across different pages.
1818

19-
App state variables should not be used for temporary data that doesn't impact the overall state of the application. For instance, a user's temporary input in a form should not be stored in an app state variable. It would be more appropriate to use a [page state](../../resources/ui/pages/page-lifecycle/#page-state) or [component state](../../ff-concepts/state-management/generated-code.md#component-state) variable instead.
19+
App state variables should not be used for temporary data that doesn't impact the overall state of the application. For instance, a user's temporary input in a form should not be stored in an app state variable. It would be more appropriate to use a [page state](../../resources/ui/pages/page-lifecycle.md#page-state) or [component state](../../ff-concepts/state-management/generated-code.md#component-state) variable instead.
2020

2121
## App State Variables
2222

firebase.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1780,17 +1780,17 @@
17801780
},
17811781
{
17821782
"source": "/flutter/generated-code",
1783-
"destination": "/",
1783+
"destination": "/generated-code/project-structure",
17841784
"type": 301
17851785
},
17861786
{
17871787
"source": "/flutter/generated-code/directory-structure",
1788-
"destination": "/",
1788+
"destination": "/generated-code/project-structure",
17891789
"type": 301
17901790
},
17911791
{
17921792
"source": "/flutter/generated-code/flutterflow-classes",
1793-
"destination": "/",
1793+
"destination": "/generated-code/page-model",
17941794
"type": 301
17951795
},
17961796
{

0 commit comments

Comments
 (0)