1
0

Fixed a typo in the Dialog.jsx

This commit is contained in:
Mathias Wagner 2023-11-23 14:43:32 +01:00
parent 8bbf25ba26
commit fded4f98a6
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -69,7 +69,7 @@ export const Dialog = ({onClose, open}) => {
</div> </div>
<div className="dialog-item"> <div className="dialog-item">
<h2>Kosten pro Kochen</h2> <h2>Kosten pro Kuchen</h2>
<input type="number" className="glassy input" value={costPerCake} <input type="number" className="glassy input" value={costPerCake}
onChange={(e) => updateCostPerCake(parseInt(e.target.value))}/> onChange={(e) => updateCostPerCake(parseInt(e.target.value))}/>
</div> </div>