Skip to content

Commit

Permalink
Merge pull request #29 from IV1201-Group-2/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
gyuudon3187 authored Feb 18, 2024
2 parents 31e0d46 + 849999b commit c1e0a58
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/components/generic/PersonalInformation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ getPersonalInformation();
function initPersonalInformation() {
return {
firstNameInput: ref("Sven"),
lastNameInput: ref("Svensson"),
personNumberInput: ref("930101-xxxx"),
emailInput: ref("[email protected]")
firstNameInput: ref(""),
lastNameInput: ref(""),
personNumberInput: ref(""),
emailInput: ref("")
};
}
Expand All @@ -35,8 +35,7 @@ function getPersonalInformation() {
}
const url =
"https://application-form-service-8e764787209b.herokuapp.com/api/application-form/applicant/personal-info/" +
params;
"https://personal-info-service-f25ca556a7c9.herokuapp.com/api/application-form/applicant/personal-info/" + params;
let options = {
method: "GET",
headers: {
Expand Down

0 comments on commit c1e0a58

Please sign in to comment.