Skip to content

Commit

Permalink
fix: use isDisabled instead of disabled in Button
Browse files Browse the repository at this point in the history
  • Loading branch information
adamborowski committed Jan 17, 2023
1 parent 21f00b2 commit 58754f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/repositories/components/SearchBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const SearchBox = memo<SearchBoxProps>(
type="submit"
variant="solid"
colorScheme="blue"
disabled={!isSearchAvailable}
isDisabled={!isSearchAvailable}
>
<FormattedMessage {...messages.searchButtonLabel} />
</Button>
Expand Down

0 comments on commit 58754f7

Please sign in to comment.