Skip to content

Commit

Permalink
REmove hardcoding
Browse files Browse the repository at this point in the history
  • Loading branch information
wg102 committed Jan 8, 2024
1 parent bea7410 commit 846e14f
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ export class LandingPage extends mixinBehaviors([AppLocalizeBehavior], utilities
* @param {string} namespace
*/
getNamespace(namespace) {
namespace ='wendy-gaultier'; // test to bypass anon
fetch(
// eslint-disable-next-line max-len
`jupyter/api/namespaces/${namespace}`, {
Expand All @@ -101,7 +100,7 @@ export class LandingPage extends mixinBehaviors([AppLocalizeBehavior], utilities
.then((response)=>{
if (!response.ok) {
// eslint-disable-next-line no-console
console.log('Respons not ok' + response);
console.log('Response not ok' + response);
throw new Error('Failed to retrieve information');
} else {
return response;
Expand Down

0 comments on commit 846e14f

Please sign in to comment.