mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-06-06 19:35:44 +02:00
Fix import issues
This commit is contained in:
parent
15122698a0
commit
6a1ecf094c
2 changed files with 3 additions and 3 deletions
|
|
@ -416,7 +416,7 @@ export default function SimulationApp() {
|
|||
actions={[
|
||||
<ActionButton
|
||||
key="run-all"
|
||||
onClick={runAllScenarios}
|
||||
onClick={() => void runAllScenarios()}
|
||||
disabled={isRunning}
|
||||
icon={<PlayIcon className="w-4 h-4" />}
|
||||
primary
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import { Divider } from "@nextui-org/react";
|
|||
import { z } from "zod";
|
||||
import { ActionButton, StructuredPanel } from "../../../lib/components/structured-panel";
|
||||
import { EditableField } from "../../../lib/components/editable-field";
|
||||
import { XIcon } from "@heroicons/react/24/outline";
|
||||
import { XMarkIcon } from "@heroicons/react/24/outline";
|
||||
|
||||
export function PromptConfig({
|
||||
prompt,
|
||||
|
|
@ -53,7 +53,7 @@ export function PromptConfig({
|
|||
<ActionButton
|
||||
key="close"
|
||||
onClick={handleClose}
|
||||
icon={<XIcon className="w-4 h-4" />}
|
||||
icon={<XMarkIcon className="w-4 h-4" />}
|
||||
>
|
||||
Close
|
||||
</ActionButton>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue