diff --git a/ui/desktop/src/components/bottom_menu/BottomMenu.tsx b/ui/desktop/src/components/bottom_menu/BottomMenu.tsx
index bd3a2d4a..3e973471 100644
--- a/ui/desktop/src/components/bottom_menu/BottomMenu.tsx
+++ b/ui/desktop/src/components/bottom_menu/BottomMenu.tsx
@@ -10,6 +10,7 @@ import { useModelAndProvider } from '../ModelAndProviderContext';
import { Message } from '../../types/message';
import { ManualSummarizeButton } from '../context_management/ManualSummaryButton';
import { CostTracker } from './CostTracker';
+import { COST_TRACKING_ENABLED } from '../../updates';
const TOKEN_LIMIT_DEFAULT = 128000; // fallback for custom models that the backend doesn't know about
const TOKEN_WARNING_THRESHOLD = 0.8; // warning shows at 80% of the token limit
@@ -223,12 +224,18 @@ export default function BottomMenu({
{/* Cost Tracker - no separator before it */}
-
-
-
-
- {/* Separator between cost and model */}
-
+ {COST_TRACKING_ENABLED && (
+ <>
+
+
+
+
+ >
+ )}
{/* Model Selector Dropdown */}
diff --git a/ui/desktop/src/components/more_menu/MoreMenu.tsx b/ui/desktop/src/components/more_menu/MoreMenu.tsx
index 75286168..41635661 100644
--- a/ui/desktop/src/components/more_menu/MoreMenu.tsx
+++ b/ui/desktop/src/components/more_menu/MoreMenu.tsx
@@ -358,7 +358,7 @@ export default function MoreMenu({
subtitle="Browse your saved recipes"
icon={}
>
- Go to Recipe Library
+ Recipe Library
{
diff --git a/ui/desktop/src/components/settings/app/AppSettingsSection.tsx b/ui/desktop/src/components/settings/app/AppSettingsSection.tsx
index c19558c0..1a96a3d3 100644
--- a/ui/desktop/src/components/settings/app/AppSettingsSection.tsx
+++ b/ui/desktop/src/components/settings/app/AppSettingsSection.tsx
@@ -4,7 +4,7 @@ import { Button } from '../../ui/button';
import { Settings, RefreshCw, ExternalLink } from 'lucide-react';
import Modal from '../../Modal';
import UpdateSection from './UpdateSection';
-import { UPDATES_ENABLED } from '../../../updates';
+import { COST_TRACKING_ENABLED, UPDATES_ENABLED } from '../../../updates';
import { getApiUrl, getSecretKey } from '../../../config';
interface AppSettingsSectionProps {
@@ -274,24 +274,26 @@ export default function AppSettingsSection({ scrollToSection }: AppSettingsSecti
{/* Cost Tracking */}
-
-
-
Cost Tracking
-
- Show model pricing and usage costs
-
+ {COST_TRACKING_ENABLED && (
+
+
+
Cost Tracking
+
+ Show model pricing and usage costs
+
+
+
+
+
-
-
-
-
+ )}
{/* Pricing Status - only show if cost tracking is enabled */}
- {showPricing && (
+ {COST_TRACKING_ENABLED && showPricing && (
<>
Pricing Source:
diff --git a/ui/desktop/src/updates.ts b/ui/desktop/src/updates.ts
index da6e19cf..3029a850 100644
--- a/ui/desktop/src/updates.ts
+++ b/ui/desktop/src/updates.ts
@@ -1 +1,2 @@
export const UPDATES_ENABLED = true;
+export const COST_TRACKING_ENABLED = true;