From c9204eee730a55da154f9cba0b6462500ff1df82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Seweryn=20=C5=9Awirgo=C5=84?= Date: Thu, 16 Feb 2023 22:16:45 +0100 Subject: [PATCH] Fix inconsistent semi-colons in faq section (#4490) --- docs/faq/CodeStructure.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/faq/CodeStructure.md b/docs/faq/CodeStructure.md index d690e9f09e..dc045b780c 100644 --- a/docs/faq/CodeStructure.md +++ b/docs/faq/CodeStructure.md @@ -202,9 +202,9 @@ axiosInstance.interceptors.request.use(config => { Then, in your entry point file, inject the store into the API setup file: ```js title="index.js" -import store from "./app/store". -import {injectStore} from "./common/api"; -injectStore(store); +import store from "./app/store" +import {injectStore} from "./common/api" +injectStore(store) ``` This way, the application setup is the only code that has to import the store, and the file dependency graph avoids circular dependencies.