fix build ....

This commit is contained in:
artrejo 2022-01-20 18:32:16 -08:00
parent 3e7c5f4b14
commit 1b1371381e

View File

@ -1,4 +1,4 @@
export function validateEndpoint(endpointToValidate: string, allowedEndpoints: string[]): boolean {
export function validateEndpoint(endpointToValidate: string | undefined, allowedEndpoints: string[]): boolean {
if (!endpointToValidate) {
return true;
}