Skip to content

Commit

Permalink
test(Debug): debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
andy1uu committed May 6, 2024
1 parent 0c869d3 commit d6429f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/education/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import EducationAPI from "./api";

async function getData() {
return await EducationAPI.getEducation().then((response) => {
return response.data.education;
console.log(response);
return response.data.education;
});
}

Expand Down Expand Up @@ -33,7 +34,6 @@ export const metadata: Metadata = {
};

const Education = async () => {

const education: Education[] = await getData();

return (
Expand Down

0 comments on commit d6429f4

Please sign in to comment.