Skip to content

Commit

Permalink
rename function
Browse files Browse the repository at this point in the history
  • Loading branch information
birm committed Sep 12, 2023
1 parent a4f2964 commit 4e63b78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/landing/crowd.html
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ <h3>Whole Slide Imaging</h3>
fetch('../../auth/token/renew').then(x=>x.json()).then(x=>{
if (x.hasOwnProperty("token")) {
console.log("renewing token", x.token)
functionTokenRenew(x.token)
TokenRenew(x.token)
}

}).catch(e=>console.error);
Expand Down
2 changes: 1 addition & 1 deletion apps/landing/landing.html
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ <h3>Whole Slide Imaging</h3>
fetch('../../auth/token/renew').then(x=>x.json()).then(x=>{
if (x.hasOwnProperty("token")) {
console.log("renewing token", x.token)
functionTokenRenew(x.token)
TokenRenew(x.token)
}

}).catch(e=>console.error);
Expand Down

0 comments on commit 4e63b78

Please sign in to comment.