From dc830133d2e4c0c3b7cf3c004963f30a60b745c6 Mon Sep 17 00:00:00 2001 From: rory Date: Thu, 28 Dec 2023 13:58:16 -0800 Subject: [PATCH] Include activePolicyID in Account Onyx type --- src/types/onyx/Account.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/types/onyx/Account.ts b/src/types/onyx/Account.ts index c338924bae55..8093642a7111 100644 --- a/src/types/onyx/Account.ts +++ b/src/types/onyx/Account.ts @@ -47,6 +47,9 @@ type Account = { /** Whether a sign is loading */ isLoading?: boolean; + /** The active policy ID. Initiating a SmartScan will create an expense on this policy by default. */ + activePolicyID?: string; + errors?: OnyxCommon.Errors; success?: string; codesAreCopied?: boolean;