diff --git a/README.md b/README.md
index 8c21973f35..f329c20758 100644
--- a/README.md
+++ b/README.md
@@ -123,7 +123,7 @@ Refer to the [getting started guide](https://docs.inventree.org/en/latest/start/
## :iphone: Mobile App
-InvenTree is supported by a [companion mobile app](https://docs.inventree.org/en/latest/app/app/) which allows users access to stock control information and functionality.
+InvenTree is supported by a [companion mobile app](https://docs.inventree.org/app/) which allows users access to stock control information and functionality.
Android Play Store
diff --git a/src/backend/InvenTree/InvenTree/version.py b/src/backend/InvenTree/InvenTree/version.py
index d83196ff0b..eef574e1bd 100644
--- a/src/backend/InvenTree/InvenTree/version.py
+++ b/src/backend/InvenTree/InvenTree/version.py
@@ -104,7 +104,7 @@ def inventreeDocUrl():
def inventreeAppUrl():
"""Return URL for InvenTree app site."""
- return f'{inventreeDocUrl()}/app/app/'
+ return f'https://docs.inventree.org/app/'
def inventreeCreditsUrl():
diff --git a/src/frontend/src/defaults/links.tsx b/src/frontend/src/defaults/links.tsx
index 5bf2839689..bc836c52ec 100644
--- a/src/frontend/src/defaults/links.tsx
+++ b/src/frontend/src/defaults/links.tsx
@@ -36,7 +36,7 @@ if (IS_DEV_OR_DEMO) {
}
export const docLinks = {
- app: 'https://docs.inventree.org/en/latest/app/app/',
+ app: 'https://docs.inventree.org/app/',
getting_started: 'https://docs.inventree.org/en/latest/getting_started/',
api: 'https://docs.inventree.org/en/latest/api/api/',
developer: 'https://docs.inventree.org/en/latest/develop/starting/',