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(
(response) => {
// Success
//console.log(response);
return response;
},
(error) => {
// Error
console.log("error: " + error);
return null;
}
);