diff --git a/src/components/SelectionList/types.ts b/src/components/SelectionList/types.ts index c092f266046a..5c28a139903d 100644 --- a/src/components/SelectionList/types.ts +++ b/src/components/SelectionList/types.ts @@ -69,8 +69,10 @@ type User = { invitedSecondaryLogin?: string; + /** Represents the index of the section it came from */ sectionIndex: number; + /** Represents the index of the option within the section it came from */ index: number; }; @@ -109,8 +111,10 @@ type RadioItem = { /** The type of action that's pending */ pendingAction?: undefined; + /** Represents the index of the section it came from */ sectionIndex: number; + /** Represents the index of the option within the section it came from */ index: number; };