feat: add address field to metaFields in alerts

This commit is contained in:
2025-12-15 14:19:25 +05:30
parent 7dc3386847
commit 9e7cbfd3d8
5 changed files with 7 additions and 0 deletions

View File

@@ -322,6 +322,7 @@ export async function updatePermit(
{
client: updatePermitResult.client.toString(),
county: updatePermitResult.county.id.toString(),
address: updatePermitResult.address,
}
);
}
@@ -365,6 +366,7 @@ export async function updatePermit(
{
client: updatePermitResult.client.toString(),
county: updatePermitResult.county.id.toString(),
address: updatePermitResult.address.full_address,
}
);
}