Fix its possessive

Signed-off-by: Adam Harvey <adam.harvey@dxc.com>
This commit is contained in:
Adam Harvey
2021-02-22 22:57:35 -05:00
parent 7ac93ba765
commit a0049c043a
2 changed files with 2 additions and 2 deletions
@@ -74,7 +74,7 @@ describe('<ProvidedApisCard />', () => {
);
expect(getByText(/Provided APIs/i)).toBeInTheDocument();
expect(getByText(/does not provide it's own APIs/i)).toBeInTheDocument();
expect(getByText(/does not provide its own APIs/i)).toBeInTheDocument();
});
it('shows consumed APIs', async () => {
@@ -72,7 +72,7 @@ export const ProvidedApisCard = ({ variant = 'gridItem' }: Props) => {
variant={variant}
emptyContent={
<div>
This {entity.kind.toLowerCase()} does not provide it's own APIs.{' '}
This {entity.kind.toLowerCase()} does not provide its own APIs.{' '}
<Link to="https://backstage.io/docs/features/software-catalog/descriptor-format#specprovidesapis-optional">
(Learn how to change this.)
</Link>