feat(client): add update password

This commit is contained in:
2025-06-27 13:25:25 +05:00
parent 8f3fde623f
commit 1eadd834e3
5 changed files with 28 additions and 8 deletions

View File

@@ -70,7 +70,7 @@ export default function Header({ title, additionalContent }: HeaderProps) {
closeDrawer={closeEditDrawer}
type="edit"
>
{user?.id && <UserEdit userId={user?.id} />}
{user?.id && <UserEdit closeDrawer={closeEditDrawer} userId={user?.id} />}
</ContentDrawer>
</div>
);