super minor

This commit is contained in:
2025-08-24 14:03:55 -04:00
parent 9b918b1c6a
commit 6c64886f2a

View File

@@ -26,9 +26,10 @@ const Profile = () => {
Name:{" "}
<input
value={profile()?.data?.name ?? ""}
onChange={(e) =>
api.setName.post({ name: e.target.value })
}
onChange={(e) => {
dialogRef.close();
void api.setName.post({ name: e.target.value });
}}
class="bg-emerald-200 border-1.5 rounded-full px-4"
/>
</div>