chore: format + regenerate protocol
This commit is contained in:
@@ -8,8 +8,7 @@ export type DeliveryContext = {
|
||||
|
||||
export function normalizeDeliveryContext(context?: DeliveryContext): DeliveryContext | undefined {
|
||||
if (!context) return undefined;
|
||||
const channel =
|
||||
typeof context.channel === "string" ? context.channel.trim() : undefined;
|
||||
const channel = typeof context.channel === "string" ? context.channel.trim() : undefined;
|
||||
const to = typeof context.to === "string" ? context.to.trim() : undefined;
|
||||
const accountId = normalizeAccountId(context.accountId);
|
||||
if (!channel && !to && !accountId) return undefined;
|
||||
|
||||
Reference in New Issue
Block a user