mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 13:25:18 +00:00
fix: better webhook error handling
This commit is contained in:
@@ -15,7 +15,12 @@ export default function ProfileSettingsForm({ user }: { user: User }) {
|
||||
return (
|
||||
<div>
|
||||
<form action={saveAction} className="space-y-4">
|
||||
<FormAvatar title="Avatar" name="avatar" className="w-24 h-24" defaultValue={user.avatar || ""} />
|
||||
<FormAvatar
|
||||
title="Avatar"
|
||||
name="avatar"
|
||||
className="w-24 h-24"
|
||||
defaultValue={user.avatar ? user.avatar + "?" + user.id : ""}
|
||||
/>
|
||||
|
||||
<FormInput title="Account Name" name="name" defaultValue={user.name || ""} />
|
||||
|
||||
|
||||
Reference in New Issue
Block a user