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:")) {
const tpsProperty = param.substring(4, param.length);
getTenantProperty(tpsProperty, props)
.then((value: string) => {
reference.value = value;
.then((value: unknown) => {
reference.value = value as string;
})
.catch((err: Error) => {
errorMessage.value = `${err.message} for TPS property ${tpsProperty}`;