Skip to content

Commit 3c5e67a

Browse files
committed
Revert "updates"
This reverts commit 5611b5b.
1 parent 5611b5b commit 3c5e67a

File tree

4 files changed

+38
-52
lines changed

4 files changed

+38
-52
lines changed

docs/concepts/state-management.md

Lines changed: 0 additions & 33 deletions
This file was deleted.
-484 KB
Binary file not shown.

docs/troubleshooting/push-notifications.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ toc_max_heading_level: 5
99
Push notifications play a vital role in mobile apps, letting you connect with your audience and update them on key developments. But, there are instances when push notifications fail to deliver. In this guide, we'll explore some typical problems that hinder push notifications in FlutterFlow and offer detailed instructions on how to fix them.
1010

1111

12-
<img src="./push-notification-assets/push-notifications-ff.png" alt="Firebase Console" />
12+
![push-notifications-ff.png](push-notification-assets%2Fpush-notifications-ff.png)
1313

1414
:::tip Using CodeMagic? [Skip ahead!](https://mdxjs.com/playground/)
1515

@@ -20,7 +20,7 @@ Push notifications play a vital role in mobile apps, letting you connect with yo
2020
#### 1. Ensure your subscription status hasn't changed.
2121
Head to the [Firebase Console](https://console.firebase.google.com/) and select Project Settings > Usage & Billing > Details & Settings.
2222

23-
<img src="./push-notification-assets/firebase-console.png" alt="Firebase Console" />
23+
![firebase-console.png](push-notification-assets%2Ffirebase-console.png)
2424

2525
If you see Spark listed, you will need to select Modify Plan and upgrade to a Blaze Plan.
2626

sidebars.ts

Lines changed: 36 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,42 @@ import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
22

33

44
const sidebars: SidebarsConfig = {
5-
troubleshootingSidebar: [{type: 'autogenerated', dirName: 'troubleshooting'}], // Adjust `dirName` as needed
6-
changelogSidebar: [{type: 'autogenerated', dirName: 'changelog'}], // Adjust `dirName` as needed
7-
docsSidebar : [
8-
{
9-
type: 'category',
10-
label: 'Getting Started',
11-
collapsed: false,
12-
items: ['index', {type: 'category', label: "Before You Begin", items: [
13-
'intro/before-you-begin/setting-up-flutterflow', 'intro/before-you-begin/app-architecture'
14-
]}]},
15-
{
16-
type: 'category',
17-
label: 'Concepts',
18-
collapsed: false,
19-
items: ['concepts/state-management']
20-
}
21-
]
5+
troubleshootingSidebar: [{type: 'autogenerated', dirName: 'troubleshooting'}], // Adjust `dirName` as needed
6+
changelogSidebar: [{type: 'autogenerated', dirName: 'changelog'}], // Adjust `dirName` as needed
7+
docsSidebar: [
8+
{
9+
type: 'category',
10+
label: 'Getting Started',
11+
collapsed: false,
12+
items: ['index', {
13+
type: 'category', label: "Before You Begin", items: [
14+
'intro/before-you-begin/setting-up-flutterflow', 'intro/before-you-begin/app-architecture', 'intro/quickstart'
15+
]
16+
}],
17+
},
18+
{
19+
type: 'category',
20+
label: 'Resources',
21+
collapsed: false,
22+
items: [
23+
{
24+
type: 'autogenerated',
25+
dirName: 'resources'
26+
}
27+
],
28+
},
29+
{
30+
type: 'category',
31+
label: 'Building Concepts',
32+
collapsed: false,
33+
items: [
34+
{
35+
type: 'autogenerated',
36+
dirName: 'ff-concepts'
37+
}
38+
],
39+
}
40+
]
2241
};
2342

2443
export default sidebars;

0 commit comments

Comments
 (0)