From d1fdfb140cc440664f77a24886172f9976a05a31 Mon Sep 17 00:00:00 2001 From: soryu Date: Tue, 28 Apr 2026 19:12:52 +0100 Subject: feat: revert broken directive PRs, re-implement Lexical document orchestrator (#98) * feat: soryu-co/soryu - makima: Revert broken directive PRs and verify clean build * feat: soryu-co/soryu - makima: Re-implement frontend: Lexical document editor with feature flag and base components * WIP: heartbeat checkpoint * feat: soryu-co/soryu - makima: Add contract blocks, expandable log rows, and interaction controls * WIP: heartbeat checkpoint * feat: soryu-co/soryu - makima: End-to-end build verification and integration polish --- frontend/src/components/ConfigModal.tsx | 35 +++------------------------------ 1 file changed, 3 insertions(+), 32 deletions(-) (limited to 'frontend/src/components/ConfigModal.tsx') 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 = ({ isOpen, onClose, skipIntro, onSkipIntroChange }) => { - const documentUiEnabled = useStore(documentUiEnabledStore) - if (!isOpen) return null return ( @@ -20,9 +15,9 @@ export const ConfigModal: React.FC = ({ isOpen, onClose, skipIntro, onSki
e.stopPropagation()}>

Configuration

- +
- +
- -
- -
- Replace the directive management interface with an interactive document editor. This is a proof of concept. -
- {documentUiEnabled && ( - - Open Directives Editor {'\u2192'} - - )} -
- +
-- cgit v1.2.3