Fix import issues

This commit is contained in:
akhisud3195 2025-02-19 17:33:04 +05:30
parent 15122698a0
commit 6a1ecf094c
2 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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>