From 2c333d9c00aee6cef9398840dca4afc4c9b8c3ef Mon Sep 17 00:00:00 2001 From: Mathis Date: Tue, 11 Jun 2024 16:58:43 +0200 Subject: [PATCH] feat(component): update user data references from name to firstName The changes replace the "name" property references with "firstName" in the account-info component. The user interface buttons' labels and input field placeholders now utilize "firstName" for user data. This adjustment provides clearer and more accurate data presentation to the users. --- src/components/account-info.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/account-info.tsx b/src/components/account-info.tsx index a660cda..84c37dd 100644 --- a/src/components/account-info.tsx +++ b/src/components/account-info.tsx @@ -23,7 +23,7 @@ export function AccountInfo({userData}: {userData: IUserData}) { @@ -38,7 +38,7 @@ export function AccountInfo({userData}: {userData: IUserData}) { - {console.log(event.target.value)}} /> + {console.log(event.target.value)}} />