From 73f6bc9ed822e97012587c61e6388b10d7b2f338 Mon Sep 17 00:00:00 2001 From: Ben McFerren Date: Mon, 12 Jan 2026 06:35:46 -0500 Subject: [PATCH] PM-29919 resolved build issue --- .../src/send-form/components/options/send-options.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/tools/send/send-ui/src/send-form/components/options/send-options.component.ts b/libs/tools/send/send-ui/src/send-form/components/options/send-options.component.ts index baa5aee202e..96c9a8bbb1b 100644 --- a/libs/tools/send/send-ui/src/send-form/components/options/send-options.component.ts +++ b/libs/tools/send/send-ui/src/send-form/components/options/send-options.component.ts @@ -84,7 +84,7 @@ export class SendOptionsComponent implements OnInit { ), ); - authTypes = [ + authTypes: { name: string; value: string | null; disabled?: boolean }[] = [ { name: this.i18nService.t("none"), value: null }, { name: this.i18nService.t("password"), value: "password" }, { name: this.i18nService.t("specificPeople"), value: "email" },