Skip to content

Commit 0f8f67e

Browse files
authored
chore: update paywall grammar mistake (coder#20602)
Resolved issue from coder#20331 where the article `an` was incorrectly used before words not beginning with a vowel sound. Updated affected instances to use the correct article `a`. ```diff - You need an Premium license to use this feature. + You need a Premium license to use this feature. ``` This was already correct on the following pages. * [`ConnectionLogPageView.tsx`](https://github.com/coder/coder/blob/7182c53df7648cd7db8551629226c4a0a1cc8559/site/src/pages/ConnectionLogPage/ConnectionLogPageView.tsx#L130) * [`GroupsPageView.tsx`](https://github.com/coder/coder/blob/7182c53df7648cd7db8551629226c4a0a1cc8559/site/src/pages/GroupsPage/GroupsPageView.tsx#L49)
1 parent 9298e7e commit 0f8f67e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

site/src/pages/AuditPage/AuditPageView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export const AuditPageView: FC<AuditPageViewProps> = ({
132132
<Cond>
133133
<Paywall
134134
message="Audit logs"
135-
description="Audit logs allow you to monitor user operations on your deployment. You need an Premium license to use this feature."
135+
description="Audit logs allow you to monitor user operations on your deployment. You need a Premium license to use this feature."
136136
documentationLink={docs("/admin/security/audit-logs")}
137137
/>
138138
</Cond>

site/src/pages/DeploymentSettingsPage/IdpOrgSyncPage/IdpOrgSyncPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ const IdpOrgSyncPage: FC = () => {
8080
<Cond condition={!isIdpSyncEnabled}>
8181
<Paywall
8282
message="IdP Organization Sync"
83-
description="Configure organization mappings to synchronize claims in your auth provider to organizations within Coder. You need an Premium license to use this feature."
83+
description="Configure organization mappings to synchronize claims in your auth provider to organizations within Coder. You need a Premium license to use this feature."
8484
documentationLink={docs("/admin/users/idp-sync")}
8585
/>
8686
</Cond>

site/src/pages/OrganizationSettingsPage/IdpSyncPage/IdpSyncPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ const IdpSyncPage: FC = () => {
132132
<Cond condition={!isIdpSyncEnabled}>
133133
<Paywall
134134
message="IdP Sync"
135-
description="Configure group and role mappings to manage permissions outside of Coder. You need an Premium license to use this feature."
135+
description="Configure group and role mappings to manage permissions outside of Coder. You need a Premium license to use this feature."
136136
documentationLink={docs("/admin/users/idp-sync")}
137137
/>
138138
</Cond>

site/src/pages/TemplateSettingsPage/TemplatePermissionsPage/TemplatePermissionsPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const TemplatePermissionsPage: FC = () => {
3030
{!isTemplateRBACEnabled ? (
3131
<Paywall
3232
message="Template permissions"
33-
description="Control access of templates for users and groups to templates. You need an Premium license to use this feature."
33+
description="Control access of templates for users and groups to templates. You need a Premium license to use this feature."
3434
documentationLink={docs("/admin/templates/template-permissions")}
3535
/>
3636
) : (

0 commit comments

Comments
 (0)