summaryrefslogtreecommitdiff
path: root/frontend/src/components/VNInterface.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/VNInterface.tsx')
-rw-r--r--frontend/src/components/VNInterface.tsx28
1 files changed, 1 insertions, 27 deletions
diff --git a/frontend/src/components/VNInterface.tsx b/frontend/src/components/VNInterface.tsx
index 0a77f39..318a9b9 100644
--- a/frontend/src/components/VNInterface.tsx
+++ b/frontend/src/components/VNInterface.tsx
@@ -9,11 +9,9 @@ import {
showSettingsModalStore,
isVisibleStore,
yenBalanceStore,
- documentEditorEnabledStore,
toggleStandby,
toggleShowChoices,
- updateTime,
- setDocumentEditorEnabled
+ updateTime
} from '../stores'
interface VNInterfaceProps {
@@ -28,7 +26,6 @@ export function VNInterface({ onLogout }: VNInterfaceProps) {
const showSettingsModal = useStore(showSettingsModalStore)
const isVisible = useStore(isVisibleStore)
const yenBalance = useStore(yenBalanceStore)
- const documentEditorEnabled = useStore(documentEditorEnabledStore)
// Fade in effect on mount
useEffect(() => {
@@ -116,14 +113,6 @@ export function VNInterface({ onLogout }: VNInterfaceProps) {
<span className="info-value">Contracts</span>
</Link>
</div>
- {documentEditorEnabled && (
- <div className="status-item">
- <Link to="/directives" style={{ color: '#66ccff', textDecoration: 'none', display: 'flex', alignItems: 'center', gap: '4px' }}>
- <span className="info-label">Edit:</span>
- <span className="info-value">Directives</span>
- </Link>
- </div>
- )}
</div>
</div>
</div>
@@ -209,21 +198,6 @@ export function VNInterface({ onLogout }: VNInterfaceProps) {
</div>
</div>
<div className="settings-section">
- <h3>Feature Flags</h3>
- <div className="setting-item">
- <label>
- <input
- type="checkbox"
- checked={documentEditorEnabled}
- onChange={(e) => setDocumentEditorEnabled(e.target.checked)}
- /> Document Editor (Directives)
- </label>
- <div style={{ fontSize: '0.8em', opacity: 0.7, marginTop: '4px' }}>
- Enable the directive document editor interface
- </div>
- </div>
- </div>
- <div className="settings-section">
<h3>Audio</h3>
<div className="setting-item">
<label>Master Volume</label>