summaryrefslogtreecommitdiff
path: root/frontend/src/components/ConfigModal.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/ConfigModal.tsx')
-rw-r--r--frontend/src/components/ConfigModal.tsx35
1 files changed, 3 insertions, 32 deletions
diff --git a/frontend/src/components/ConfigModal.tsx b/frontend/src/components/ConfigModal.tsx
index 9746e4e..e7b1f9f 100644
--- a/frontend/src/components/ConfigModal.tsx
+++ b/frontend/src/components/ConfigModal.tsx
@@ -1,7 +1,4 @@
import React from 'react'
-import { useStore } from '@nanostores/react'
-import { Link } from 'react-router-dom'
-import { documentUiEnabledStore, setDocumentUiEnabled } from '../stores'
type Props = {
isOpen: boolean
@@ -11,8 +8,6 @@ type Props = {
}
export const ConfigModal: React.FC<Props> = ({ isOpen, onClose, skipIntro, onSkipIntroChange }) => {
- const documentUiEnabled = useStore(documentUiEnabledStore)
-
if (!isOpen) return null
return (
@@ -20,9 +15,9 @@ export const ConfigModal: React.FC<Props> = ({ isOpen, onClose, skipIntro, onSki
<div className="config-modal" onClick={e => e.stopPropagation()}>
<div className="modal-header">
<h2>Configuration</h2>
- <button className="close-btn" onClick={onClose}>{'\u00D7'}</button>
+ <button className="close-btn" onClick={onClose}>×</button>
</div>
-
+
<div className="modal-content">
<div className="config-option">
<label className="config-label">
@@ -38,32 +33,8 @@ export const ConfigModal: React.FC<Props> = ({ isOpen, onClose, skipIntro, onSki
Skip the loading screen animation on startup
</div>
</div>
-
- <div className="config-option" style={{ marginTop: '16px' }}>
- <label className="config-label">
- <input
- type="checkbox"
- checked={documentUiEnabled}
- onChange={e => setDocumentUiEnabled(e.target.checked)}
- className="config-checkbox"
- />
- <span className="config-text">Enable Document UI (Experimental)</span>
- </label>
- <div className="config-description">
- Replace the directive management interface with an interactive document editor. This is a proof of concept.
- </div>
- {documentUiEnabled && (
- <Link
- to="/directives"
- style={{ display: 'inline-block', marginTop: '8px', color: '#ff66cc', fontSize: '0.9em' }}
- onClick={onClose}
- >
- Open Directives Editor {'\u2192'}
- </Link>
- )}
- </div>
</div>
-
+
<div className="modal-footer">
<button className="modal-btn" onClick={onClose}>Close</button>
</div>