Skip to content

Commit b1efd71

Browse files
committed
chore: fix prettier errors
1 parent 6b28229 commit b1efd71

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

refact-agent/gui/src/components/ChatForm/PromptSelect.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ export const PromptSelect: React.FC = () => {
3232
);
3333

3434
const caps = useGetCapsQuery();
35-
const default_system_prompt = caps.data?.code_chat_default_system_prompt ?? "default";
35+
const default_system_prompt =
36+
caps.data?.code_chat_default_system_prompt ?? "default";
3637
const val = useMemo(
3738
() => Object.keys(selectedSystemPrompt)[0] ?? default_system_prompt,
3839
[selectedSystemPrompt],

0 commit comments

Comments
 (0)