From 796c4f127d0fd4a66b63288c7b22a5aa3b002b0c Mon Sep 17 00:00:00 2001
From: Josef Olsson <josol381@student.liu.se>
Date: Mon, 7 Jun 2021 14:06:00 +0200
Subject: [PATCH] Possible fix to a client error

---
 docs/source/installation/client.md | 6 ++++++
 server/README.md                   | 4 ++++
 2 files changed, 10 insertions(+)

diff --git a/docs/source/installation/client.md b/docs/source/installation/client.md
index f7a88652..fa24c558 100644
--- a/docs/source/installation/client.md
+++ b/docs/source/installation/client.md
@@ -20,3 +20,9 @@ You should now be ready to start the client.
 Try it by running `npm run start`.
 A web page should open where you can see the [login page](../user_manual/login.md).
 If you are using VS Code you can also start the client with the [task](../development/vscode.md) `start client`.
+
+## If there are any errors, please try this.
+```
+npm rm react react-dom
+npm i -s react react-dom
+```
\ No newline at end of file
diff --git a/server/README.md b/server/README.md
index 6e307e40..bb263188 100644
--- a/server/README.md
+++ b/server/README.md
@@ -39,6 +39,10 @@ Set-ExecutionPolicy Unrestricted -Scope Process
 
 # Install all the required packages into your virtual environment.
 pip install -r requirements.txt
+
+# If there are any errors, please try this.
+npm rm react react-dom
+npm i -s react react-dom
 ```
 
 ### Linux(Ubuntu)
-- 
GitLab