fix: thread accountId through subagent announce delivery
Co-authored-by: Adam Holt <adam91holt@users.noreply.github.com>
This commit is contained in:
5
src/utils/account-id.ts
Normal file
5
src/utils/account-id.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
export function normalizeAccountId(value?: string): string | undefined {
|
||||
if (typeof value !== "string") return undefined;
|
||||
const trimmed = value.trim();
|
||||
return trimmed || undefined;
|
||||
}
|
||||
Reference in New Issue
Block a user