Skip to content

Commit

Permalink
Modified User profle page
Browse files Browse the repository at this point in the history
  • Loading branch information
OSEH-svg committed Feb 24, 2025
1 parent c48bdb9 commit 91c8228
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/dashboard/user-profile/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import Rectangle27 from "@/public/img/Rectangle 27.svg";

type ModalType = "experience" | "certification" | "skills" | null;

const page: NextPage = () => {
const Page: NextPage = () => {
const [isModalOpen, setIsModalOpen] = useState(false);
const [modalType, setModalType] = useState<ModalType>(null);
const [editData, setEditData] = useState<
Expand Down Expand Up @@ -388,4 +388,4 @@ const page: NextPage = () => {
);
};

export default page;
export default Page;

0 comments on commit 91c8228

Please sign in to comment.