Removed some debugging statements.

This commit is contained in:
Jeremy Zimmerman 2023-02-22 12:43:09 -05:00
parent 3a18b52640
commit afc6e55504

View file

@ -8,12 +8,10 @@ export function validateISSClientTag(clientTag) {
.then( .then(
(response) => { (response) => {
// Success // Success
//console.log(response);
return response; return response;
}, },
(error) => { (error) => {
// Error // Error
console.log("error: " + error);
return null; return null;
} }
); );