diff --git a/apps/rowboat/app/projects/[projectId]/simulation/app.tsx b/apps/rowboat/app/projects/[projectId]/simulation/app.tsx index 5efe8df5..87cf9804 100644 --- a/apps/rowboat/app/projects/[projectId]/simulation/app.tsx +++ b/apps/rowboat/app/projects/[projectId]/simulation/app.tsx @@ -437,15 +437,15 @@ function ScenarioViewer({
-
CONTEXT
-
{scenario.context}
+
DESCRIPTION
+
{scenario.description}
-
DESCRIPTION
-
{scenario.description}
+
CONTEXT
+
{scenario.context}
@@ -462,16 +462,16 @@ function ScenarioEditor({ onCancel: () => void; }) { const [name, setName] = useState(scenario.name); - const [context, setContext] = useState(scenario.context || ''); const [description, setDescription] = useState(scenario.description); + const [context, setContext] = useState(scenario.context || ''); const handleSubmit = (e: React.FormEvent) => { e.preventDefault(); onSave({ ...scenario, name, - context, description, + context, }); }; @@ -509,18 +509,6 @@ function ScenarioEditor({
-
-
CONTEXT
-