Skip to content

Commit c146f4f

Browse files
committed
test(teach): fix misspell for Join Educators Community
1 parent 2c4ecb7 commit c146f4f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

static/js/ktl-component/teach/index.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import './style.scss';
1515
import {SubscriptionForm} from './components/subscription-form';
1616
import {TeachMap} from './components/teach-map/teach-map.jsx';
1717
import {SlackIcon} from "@rescui/icons";
18-
import Button from "@rescui/button";
18+
import { Button } from "@rescui/button";
1919
import { TeachLaunchCourse } from "./components/teach-launch-course";
2020

2121
import { useTextStyles } from '@rescui/typography';
@@ -41,7 +41,7 @@ const Teach = (props) => {
4141
rel="noopener"
4242
className="teach-cta-block-button"
4343
>
44-
Join Educators Сommunity
44+
Join Educators Community
4545
</Button>
4646

4747
<Button mode="outline" href="why-teach-kotlin.html" className="teach-cta-block-button">
@@ -121,7 +121,7 @@ const Teach = (props) => {
121121
rel="noopener"
122122
className="teach-cta-block-button"
123123
>
124-
Join Educators Сommunity
124+
Join Educators Community
125125
</Button>
126126

127127
<Button size="l" mode="outline" href="why-teach-kotlin.html" className="teach-cta-block-button">

test/e2e/teach/education.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ test.describe('Education landing page content and interactions', async () => {
6666
const block = page.locator('.teach-top-buttons');
6767

6868
// Check the "Join Educators Community" button visibility and link
69-
const join = block.getByRole('link', { name: 'Join Educators Сommunity', exact: true });
69+
const join = block.getByRole('link', { name: 'Join Educators Community', exact: true });
7070
await expect(join).toBeVisible();
7171
await expect(join).toHaveAttribute('href', SIGNUP_LINK);
7272

0 commit comments

Comments
 (0)