Merge branch 'main' into audio-feature-addition

This commit is contained in:
Aashish Anand
2025-07-08 12:04:15 -07:00
committed by GitHub
9 changed files with 377 additions and 172 deletions

View File

@@ -7,11 +7,13 @@ import InputFooter from './InputFooter';
export default function ToolTextInput({
value,
onChange,
title = 'Input text'
title = 'Input text',
placeholder
}: {
title?: string;
value: string;
onChange: (value: string) => void;
placeholder?: string;
}) {
const { showSnackBar } = useContext(CustomSnackBarContext);
const fileInputRef = useRef<HTMLInputElement>(null);
@@ -50,6 +52,7 @@ export default function ToolTextInput({
fullWidth
multiline
rows={10}
placeholder={placeholder}
sx={{
'&.MuiTextField-root': {
backgroundColor: 'background.paper'