From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server-vie001.gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,URIBL_ZEN_BLOCKED_OPENDNS autolearn=ham autolearn_force=no version=3.4.6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1741185658; bh=VaWxY+vn+i4Di4L/Egru6QzZoVr+RH8oamZRHq1KHRg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Transfer-Encoding:Message-ID:Date:From: Reply-To:Subject:To:Cc:In-Reply-To:References:Resent-Date: Resent-From:Resent-To:Resent-Cc:User-Agent:Content-Type: Content-Transfer-Encoding; b=JGvepQdEf6dVMjpU/J92EN/YXXcCSEYrg9oS5Z2K7DUdFHGn5F1LcnmYEcbuvDEOR N3K+FYZV4tKxitElZgWr0yWmv7YWU9FznzD6L53vOdb0l+dm4HYLu82MQZ1mBc4GFx C9dt4mqF+jcND+QvMoLffm6rGJH6gm7r9dHAhq57eieOcXZpojRRbv2166MTemrL5z c9/iqN6Y6YSa2WeOVWCMtRLGeEcYI8L3lgDpUk4p8U/9dF4vpdV72NORUE3Av87/1X AGQ/kbWINcQ2Mr2fWHKlx3UlHOdeQCsqJa0HEv547JslTbxIA4Fw0uH5Y+U3QFYzhZ OePG8MxhJGZCw== Received: from localhost.localdomain (unknown [203.217.140.198]) by server-vie001.gnuweeb.org (Postfix) with ESMTPSA id ACC3820B4832; Wed, 5 Mar 2025 14:40:57 +0000 (UTC) From: Muhammad Rizki To: Ammar Faizi Cc: Muhammad Rizki , Alviro Iskandar Setiawan , GNU/Weeb Mailing List Subject: [PATCH v1 08/17] chore(navigations): Replace index /settings url Date: Wed, 5 Mar 2025 21:40:07 +0700 Message-ID: <20250305144018.267-9-kiizuha@gnuweeb.org> X-Mailer: git-send-email 2.46.0.windows.1 In-Reply-To: <20250305144018.267-1-kiizuha@gnuweeb.org> References: <20250305144018.267-1-kiizuha@gnuweeb.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Replace index /settings url with /settings/profile to ensure the page is redirected properly. Signed-off-by: Muhammad Rizki --- src/lib/constants/navigations.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/constants/navigations.ts b/src/lib/constants/navigations.ts index 4266930..a23db84 100644 --- a/src/lib/constants/navigations.ts +++ b/src/lib/constants/navigations.ts @@ -11,7 +11,7 @@ export const navigations: typing.Navigations[] = [ { name: "Settings", icon: Settings, - url: "/settings", + url: "/settings/profile", items: [ { name: "Profile", -- Muhammad Rizki