From 28412d56882783723e6d89db9f45567568989017 Mon Sep 17 00:00:00 2001
From: Vincent <vincent.primault@gmail.com>
Date: Fri, 23 Aug 2024 13:05:49 +0200
Subject: [PATCH] feat: change help link to go directly to user docs

---
 apps/webapp/src/components/Sidebar.tsx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/apps/webapp/src/components/Sidebar.tsx b/apps/webapp/src/components/Sidebar.tsx
index 7edde03..4f5611f 100644
--- a/apps/webapp/src/components/Sidebar.tsx
+++ b/apps/webapp/src/components/Sidebar.tsx
@@ -44,8 +44,8 @@ export default function Sidebar({ isDark, onDarkChange, onRefresh }: Props) {
       </Tooltip>
 
       <div className={styles.bottom}>
-        <Tooltip content="Read the docs">
-          <AnchorButton large minimal href="https://pvcnt.github.io/mergeable/">
+        <Tooltip content="Help">
+          <AnchorButton large minimal href="https://pvcnt.github.io/mergeable/user-guide/">
             <Icon icon="help" size={IconSize.LARGE}/>
           </AnchorButton>
         </Tooltip>