fixed lint warnings

This commit is contained in:
Peter Morton 2023-12-19 00:12:10 -06:00
parent a9f6b15d3a
commit 559996be4a

View File

@ -61,8 +61,8 @@ function setValueFromTPS(
if (param.startsWith("tps:")) { if (param.startsWith("tps:")) {
const tpsProperty = param.substring(4, param.length); const tpsProperty = param.substring(4, param.length);
getTenantProperty(tpsProperty, props) getTenantProperty(tpsProperty, props)
.then((value: string) => { .then((value: unknown) => {
reference.value = value; reference.value = value as string;
}) })
.catch((err: Error) => { .catch((err: Error) => {
errorMessage.value = `${err.message} for TPS property ${tpsProperty}`; errorMessage.value = `${err.message} for TPS property ${tpsProperty}`;