diff --git a/apps/landing/crowd.html b/apps/landing/crowd.html
index 4570f5725..52015f72b 100644
--- a/apps/landing/crowd.html
+++ b/apps/landing/crowd.html
@@ -232,7 +232,7 @@
Whole Slide Imaging
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);
diff --git a/apps/landing/landing.html b/apps/landing/landing.html
index 9d37f654c..c3ee3c0e1 100644
--- a/apps/landing/landing.html
+++ b/apps/landing/landing.html
@@ -145,7 +145,7 @@ Whole Slide Imaging
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);