diff --git a/app/components/ui/Settings.tsx b/app/components/ui/Settings.tsx index 5c53c34..8c317d0 100644 --- a/app/components/ui/Settings.tsx +++ b/app/components/ui/Settings.tsx @@ -11,6 +11,8 @@ import { useNavigate } from '@remix-run/react'; import commit from '~/commit.json'; import Cookies from 'js-cookie'; import { SettingsSlider } from './SettingsSlider'; +import '~/styles/components/SettingsSlider.scss'; +import '~/styles/components/Settings.scss'; interface SettingsProps { open: boolean; @@ -28,6 +30,7 @@ export const Settings = ({ open, onClose }: SettingsProps) => { const [isDebugEnabled, setIsDebugEnabled] = useState(false); const [searchTerm, setSearchTerm] = useState(''); const [isDeleting, setIsDeleting] = useState(false); + const [isJustSayEnabled, setIsJustSayEnabled] = useState(false); // Load base URLs from cookies const [baseUrls, setBaseUrls] = useState(() => { @@ -211,16 +214,13 @@ export const Settings = ({ open, onClose }: SettingsProps) => { variants={dialogVariants} >
This action cannot be undone!