Merging in the React Refactor #56

Merged
azpect merged 51 commits from refactor/react into master 2025-12-28 22:27:52 -07:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 357e8772e7 - Show all commits

View File

@ -34,8 +34,8 @@ export default function IngredientSection({ section, onChange, removeIngredientS
/> />
<div className="flex gap-x-2 items-center"> <div className="flex gap-x-2 items-center">
<button <button
disabled={!allowDelete} disabled={!allowDelete}
className="p-2 pr-0 cursor-pointer text-gray-500 hover:text-red-500 disabled:text-gray-200 disabled:cursor-not-allowed duration-300" className="p-2 pr-0 cursor-pointer text-gray-500 hover:text-red-500 disabled:text-gray-200 disabled:cursor-not-allowed duration-300"
onClick={() => removeIngredientSectionHandler(section.Id)} onClick={() => removeIngredientSectionHandler(section.Id)}
> >

View File

@ -478,7 +478,7 @@ export default function Create() {
<span className="text-red-500">*</span> <span className="text-red-500">*</span>
</label> </label>
<p className="text-xs py-1 text-gray-700"> <p className="text-xs py-1 text-gray-700">
Please provide a list of ingredients and their quantities. Ingredients can be added into Please provide a list of ingredients and their quantities. Ingredients can be added into
groups. If only a single group exists, the group will be ignored when the recipe is created groups. If only a single group exists, the group will be ignored when the recipe is created
and the ingredients will appear as a single list. and the ingredients will appear as a single list.
</p> </p>