Fix ts and add note about ipv4

This commit is contained in:
Owen
2026-03-03 14:45:18 -08:00
parent 35fed74e49
commit b01fcc70fe
2 changed files with 3 additions and 3 deletions

View File

@@ -618,8 +618,8 @@ export async function handleMessagingForUpdatedSiteResource(
);
await updateTargets(newt.newtId, {
oldTargets: [oldTarget],
newTargets: [newTarget]
oldTargets: oldTarget ? [oldTarget] : [],
newTargets: newTarget ? [newTarget] : []
});
}