Skip to content

Commit

Permalink
docs(ActionList): format
Browse files Browse the repository at this point in the history
  • Loading branch information
francinelucca committed Oct 10, 2024
1 parent ca7ce1b commit ec9074c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,9 @@ export function AsyncListWithSpinner(): JSX.Element {
<FormControl.Label>Search branches</FormControl.Label>
<TextInput onChange={filter} block />
</FormControl>
{results.length === 0 ? <Text sx={{display: 'block', fontSize: 1, m: 2}}>No branches match that query</Text> : null}
{results.length === 0 ? (
<Text sx={{display: 'block', fontSize: 1, m: 2}}>No branches match that query</Text>
) : null}

<VisuallyHidden>
<AriaStatus>{getStatusMessage()}</AriaStatus>
Expand Down

0 comments on commit ec9074c

Please sign in to comment.