fixed bad import resulted in error

This commit is contained in:
sherifButt 2024-03-20 00:49:18 +00:00
parent b7ee0b27f4
commit 00cbe0ac7a

View File

@ -1,16 +1,18 @@
import TextAreaBlock from "@/components/Generic/Blocks/TextAreaBlock"; import TextAreaBlock from "@/components/Generic/Blocks/TextAreaBlock";
import EnableSystemPrompt from "./EnableSystemPrompt"; import EnableSystemPrompt from "./EnableSystemPrompt";
import { C } from "../../../../../dist/assets/index-cf7f0eac";
import CheckBoxBlock from "@/components/Generic/Blocks/CheckBoxBlock"; import CheckBoxBlock from "@/components/Generic/Blocks/CheckBoxBlock";
export default function InputsFeature({ workspace, config }) { export default function InputsFeature({ workspace, config }) {
console.log("workspace: ", workspace);
console.log("config: ", config);
return ( return (
<div className="flex flex-col gap-4 mt-4"> <div className="flex flex-col gap-4 mt-4">
<EnableSystemPrompt workspace={workspace} config={config} /> <EnableSystemPrompt workspace={workspace} config={config} />
<TextAreaBlock workspace={workspace} /> <TextAreaBlock workspace={workspace} />
<CheckBoxBlock workspace={workspace} label="override workspace prompt" inline name="systemPrompt"/> <CheckBoxBlock
workspace={workspace}
label="override workspace prompt"
inline
name="systemPrompt"
/>
</div> </div>
); );
} }