diff --git a/apps/web/app/(app)/workspaces/[workspaceId]/components/MainNavigation.tsx b/apps/web/app/(app)/workspaces/[workspaceId]/components/MainNavigation.tsx
index 487ed4bfb5..5921f202e4 100644
--- a/apps/web/app/(app)/workspaces/[workspaceId]/components/MainNavigation.tsx
+++ b/apps/web/app/(app)/workspaces/[workspaceId]/components/MainNavigation.tsx
@@ -194,7 +194,7 @@ export const MainNavigation = ({
const settingsNavigationItem = useMemo(
() => ({
name: t("common.settings"),
- href: `/workspaces/${workspace.id}/settings`,
+ href: `/workspaces/${workspace.id}/settings/workspace/general`,
icon: SettingsIcon,
isActive: isSettingsMode,
disabled: isMembershipPending || isBilling,
@@ -467,7 +467,7 @@ export const MainNavigation = ({
{isSettingsMode ? (
-
+
{/* Settings sidebar content */}
diff --git a/apps/web/modules/ui/components/go-back-button/index.tsx b/apps/web/modules/ui/components/go-back-button/index.tsx
index 09978277c2..a23db6ea3f 100644
--- a/apps/web/modules/ui/components/go-back-button/index.tsx
+++ b/apps/web/modules/ui/components/go-back-button/index.tsx
@@ -5,9 +5,14 @@ import { useRouter } from "next/navigation";
import { useTranslation } from "react-i18next";
import { Button } from "@/modules/ui/components/button";
-export const GoBackButton = ({ url }: { url?: string }) => {
+interface GoBackButtonProps {
+ url?: string;
+}
+
+export const GoBackButton = ({ url }: Readonly
) => {
const router = useRouter();
const { t } = useTranslation();
+
return (