Skip to content

Commit c9204ee

Browse files
authored
Fix inconsistent semi-colons in faq section (#4490)
1 parent 44e4798 commit c9204ee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/faq/CodeStructure.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -202,9 +202,9 @@ axiosInstance.interceptors.request.use(config => {
202202
Then, in your entry point file, inject the store into the API setup file:
203203

204204
```js title="index.js"
205-
import store from "./app/store".
206-
import {injectStore} from "./common/api";
207-
injectStore(store);
205+
import store from "./app/store"
206+
import {injectStore} from "./common/api"
207+
injectStore(store)
208208
```
209209

210210
This way, the application setup is the only code that has to import the store, and the file dependency graph avoids circular dependencies.

0 commit comments

Comments
 (0)