Skip to content

Commit

Permalink
fix: copywriting for sonarqube cloud
Browse files Browse the repository at this point in the history
  • Loading branch information
mintsweet committed Oct 10, 2024
1 parent 28a46e8 commit 9a87ad9
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

import { Input } from 'antd';

import { Block } from '@/components';
import { Block, ExternalLink } from '@/components';
import { useEffect } from 'react';

interface Props {
Expand Down Expand Up @@ -56,7 +56,13 @@ export const Organization = ({ initialValues, values, setValues, setErrors }: Pr
return (
<Block
title="Organization"
description="Add the SonarCloud organization. If you have more than one, please create another connection."
description={
<>
Copy the organization key at{' '}
<ExternalLink link="https://sonarcloud.io/account/organizations">here</ExternalLink>. If you have more than
one, please create another connection.
</>
}
required
>
<Input style={{ width: 386 }} placeholder="e.g. org-1" value={values.org} onChange={handleChange} />
Expand Down

0 comments on commit 9a87ad9

Please sign in to comment.