This commit is contained in:
fred 2025-07-11 17:06:41 -07:00
parent 6f8f03e206
commit f3f5f232e6
20 changed files with 1351 additions and 193 deletions

View file

@ -45,13 +45,13 @@ const AddBulkSteps: React.FC<AddBulkStepsProps> = ({ steps, onChange }) => {
<div>
<p>Please enter each step on a new line</p>
<textarea
rows={4}
cols={50}
rows={8}
value={textValue}
onChange={handleInputChange}
onKeyDown={handleKeyDown}
onBlur={handleBlur}
placeholder="Enter ingredients separated by newline..."
placeholder="Enter steps separated by newline..."
className="mb-4 p-2 border border-gray-300 rounded w-full"
/>
</div>
);