Bit of type cleanup when debugging

This commit is contained in:
Eli Ribble 2026-04-13 15:16:22 +00:00
parent 756cc0d266
commit 447ea18d95
No known key found for this signature in database
2 changed files with 5 additions and 4 deletions

View file

@ -158,7 +158,8 @@ async function fetchExistingReport(report_uri: string) {
return;
}
const body = await resp.json();
report.value = body;
Object.assign(report.value, body);
console.log("fetched existing report", report.value);
isLoading.value = false;
}
async function updateReport(updates: ComplianceUpdate) {