Skip to content

Commit

Permalink
please
Browse files Browse the repository at this point in the history
  • Loading branch information
ipcgrdn committed Dec 20, 2024
1 parent c9536b8 commit e711a09
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/user/[userId]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default function UserPage() {
</div>
<div className="flex flex-col items-start justify-between gap-y-4 md:py-6">
<div className="flex items-center justify-between w-full">
<div className="md:text-3xl font-bold text-2xl pl-2">
<div className="md:text-3xl font-bold text-2xl">
{profileData?.name || "U"}
</div>
<div
Expand Down
4 changes: 4 additions & 0 deletions src/components/modal/profileEdit-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ const ProfileEditModal = () => {

const onSubmit: SubmitHandler<FieldValues> = async (values) => {
try {
console.log(uuid)

console.log(values)

const hasChanges =
Object.values(values).some(
(value) => value !== null && value !== "" && value !== undefined
Expand Down

0 comments on commit e711a09

Please sign in to comment.