Skip to content

Commit 0775022

Browse files
committed
do not use description property because it was removed
1 parent 8b74014 commit 0775022

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/AutoSuggestion/AutoSuggestion.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ export const CodeAutocompleteField = ({
735735
{label}
736736
 
737737
{(pathValidationPending || suggestionsPending) && (
738-
<Spinner size="tiny" position="inline" description="Validating value path" />
738+
<Spinner size="tiny" position="inline" />
739739
)}
740740
</>
741741
),

src/components/AutoSuggestion/AutoSuggestionList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ export const AutoSuggestionList = ({
123123
<OverviewItem hasSpacing>
124124
<OverviewItemLine>Fetching suggestions</OverviewItemLine>
125125
<Spacing size="tiny" vertical={true} />
126-
<Spinner position="inline" description="" />
126+
<Spinner position="inline" />
127127
</OverviewItem>
128128
);
129129

0 commit comments

Comments
 (0)