@@ -156,7 +156,7 @@ export function MultipleSelection(): JSX.Element {
156156
157157 < p > This pattern appears in issues and pull requests to pick multiple assignees</ p >
158158
159- < ActionList selectionVariant = "multiple" showDividers role = "listbox" aria-label = "Select assignees " >
159+ < ActionList selectionVariant = "multiple" showDividers role = "listbox" aria-label = "Assignees " >
160160 { users . map ( user => (
161161 < ActionList . Item
162162 role = "option"
@@ -192,7 +192,7 @@ export function Groups(): JSX.Element {
192192
193193 < p > Grouped content with labels and description. This patterns appears in pull requests to pick a reviewer.</ p >
194194
195- < ActionList selectionVariant = "multiple" role = "menu" showDividers aria-label = "Select reviewers " >
195+ < ActionList selectionVariant = "multiple" role = "menu" showDividers aria-label = "Reviewers " >
196196 < ActionList . Group title = "Suggestions" >
197197 { users . slice ( 0 , 2 ) . map ( user => (
198198 < ActionList . Item
@@ -328,12 +328,7 @@ export function AsyncListWithSpinner(): JSX.Element {
328328 { results . length === 0 ? (
329329 < Text sx = { { display : 'block' , fontSize : 1 , m : 2 } } > No branches match that query</ Text >
330330 ) : null }
331- < ActionList
332- selectionVariant = "single"
333- role = "listbox"
334- aria-label = "Select a branch"
335- sx = { { height : 208 , overflow : 'auto' } }
336- >
331+ < ActionList selectionVariant = "single" role = "listbox" aria-label = "Branch" sx = { { height : 208 , overflow : 'auto' } } >
337332 { loading ? (
338333 < Box sx = { { display : 'flex' , justifyContent : 'center' , pt : 2 } } >
339334 < Spinner />
0 commit comments