From 15182a84e16a85f73774270a17d773d8c555fda1 Mon Sep 17 00:00:00 2001 From: I Nyoman Jyotisa Date: Fri, 29 Nov 2024 13:50:33 +0800 Subject: [PATCH] minor fix --- src/types/onyx/Account.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/types/onyx/Account.ts b/src/types/onyx/Account.ts index 26436af5b48..ea084b53279 100644 --- a/src/types/onyx/Account.ts +++ b/src/types/onyx/Account.ts @@ -61,7 +61,7 @@ type DelegatedAccess = { }; /** Model of SMS delivery failure status */ -type smsDeliveryFailureStatus = { +type SMSDeliveryFailureStatus = { /** Whether the account is having trouble receiving SMS */ hasSMSDeliveryFailure: boolean; @@ -156,7 +156,7 @@ type Account = { delegatedAccess?: DelegatedAccess; /** Indicates SMS delivery failure status and associated information */ - smsDeliveryFailureStatus?: smsDeliveryFailureStatus; + smsDeliveryFailureStatus?: SMSDeliveryFailureStatus; }; export default Account;