1
0
Fork 0
mirror of https://codeberg.org/MarkusThielker/next-ory.git synced 2025-07-01 04:29:18 +00:00

NORY-47: refactor identity traits form

This commit is contained in:
Markus Thielker 2025-01-03 22:11:45 +01:00
parent 95a068645e
commit 21ff2ad8f8
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -18,7 +18,7 @@ interface IdentityTraitFormProps {
identity: Identity;
}
export function IdentityTraitForm({ schema, identity }: IdentityTraitFormProps) {
export function IdentityTraits({ schema, identity }: IdentityTraitFormProps) {
const [currentIdentity, setCurrentIdentity] = useState(identity);