From 1c6c9792782cce50b8cde8ef16be0862d741e317 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Thu, 19 Sep 2024 07:56:29 -0700 Subject: [PATCH] Use PlainInput for Prompt.tsx --- src-web/hooks/Prompt.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src-web/hooks/Prompt.tsx b/src-web/hooks/Prompt.tsx index 1ad7531f..5714aa06 100644 --- a/src-web/hooks/Prompt.tsx +++ b/src-web/hooks/Prompt.tsx @@ -2,7 +2,7 @@ import type { FormEvent } from 'react'; import { useCallback, useState } from 'react'; import { Button } from '../components/core/Button'; import type { InputProps } from '../components/core/Input'; -import { Input } from '../components/core/Input'; +import { PlainInput } from '../components/core/PlainInput'; import { HStack } from '../components/core/Stacks'; export interface PromptProps { @@ -41,7 +41,7 @@ export function Prompt({ className="grid grid-rows-[auto_auto] grid-cols-[minmax(0,1fr)] gap-4 mb-4" onSubmit={handleSubmit} > -