added advanced workout

This commit is contained in:
2026-07-01 11:24:31 +03:00
parent 1c61bb4102
commit 0baec0231a
+1 -1
View File
@@ -118,7 +118,7 @@ export default function Memory() {
<label key={key}>
<span>{key}</span>
<input
value={profile[key] ?? ""}
value={profile[key] == null ? "" : String(profile[key])}
onChange={(e) =>
setProfile((prev) => ({ ...prev, [key]: e.target.value }))
}