diff --git a/app/components/settings/SettingsWindow.tsx b/app/components/settings/SettingsWindow.tsx index c70238e..8b62a05 100644 --- a/app/components/settings/SettingsWindow.tsx +++ b/app/components/settings/SettingsWindow.tsx @@ -30,6 +30,8 @@ export const SettingsWindow = ({ open, onClose }: SettingsProps) => { const [searchTerm, setSearchTerm] = useState(''); const [isDeleting, setIsDeleting] = useState(false); const [isJustSayEnabled, setIsJustSayEnabled] = useState(false); + const [isExperimentalFeature1Enabled, setIsExperimentalFeature1Enabled] = useState(false); + const [isExperimentalFeature2Enabled, setIsExperimentalFeature2Enabled] = useState(false); // Load base URLs from cookies const [baseUrls, setBaseUrls] = useState(() => { @@ -339,57 +341,31 @@ export const SettingsWindow = ({ open, onClose }: SettingsProps) => { )} {activeTab === 'features' && (
-

Feature Settings

-
- Debug Info -
-
- )} - {activeTab === 'features' && ( -
-

Experimental Area

-
- Replace with local models -
)}