Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nyomanjyotisa committed Nov 29, 2024
1 parent 26261cb commit 15182a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types/onyx/Account.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -156,7 +156,7 @@ type Account = {
delegatedAccess?: DelegatedAccess;

/** Indicates SMS delivery failure status and associated information */
smsDeliveryFailureStatus?: smsDeliveryFailureStatus;
smsDeliveryFailureStatus?: SMSDeliveryFailureStatus;
};

export default Account;
Expand Down

0 comments on commit 15182a8

Please sign in to comment.