We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11460b4 commit 7969123Copy full SHA for 7969123
src/faq/index.md
@@ -133,11 +133,12 @@ if (useObservable(requesting$) || useObservable(requesting$2)) {
133
134
```ts
135
const loading1 = useObservable(requesting$);
136
+
137
+const loading2 = useObservable(requesting$2);
138
139
if (loading1) {
140
return <div>Loading</div>;
141
}
-
-const loading2 = useObservable(requesting$2);
142
if (loading2) {
143
144
src/migrate/pnpm.md
@@ -36,7 +36,7 @@ rm yarn.lock
36
pnpm add @querycap-dev/devkit@0.9.0
37
```
38
39
-批量替换 `package.json` 中 `yarn` 为 `npm`
+批量替换 `package.json` 中 `yarn` 为 `pnpm`
40
41
尝试运行项目 `npx devkit dev xxx`
42
0 commit comments