Misc linting fixes.

This commit is contained in:
Patrick Fic
2025-03-19 13:52:49 -07:00
parent 3277af73f6
commit e67309ed4d
12 changed files with 36 additions and 30 deletions

View File

@@ -47,6 +47,10 @@ const DecodeTtl = async (
//Apply business logic transfomrations.
return { clm_total: 0, depreciation_taxes: 0, cieca_ttl: rawTtlData };
return {
clm_total: 0,
depreciation_taxes: 0,
cieca_ttl: { data: rawTtlData },
};
};
export default DecodeTtl;