Skip to content
This repository was archived by the owner on May 13, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/features/Home/Benefits/Benefits.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const Benefits = () => {
<section className={styles.InformationContent}>
<h1>Personalise your trading</h1>
<Text type='subtitle-2' as='p'>
Personalize your trading apps to match your needs. Create charts and views the way you
Personalise your trading apps to match your needs. Create charts and views the way you
like them. Develop your trading app using any common programming language and extend
your trading opportunities.
</Text>
Expand Down
4 changes: 2 additions & 2 deletions src/features/Home/Benefits/__tests__/Benefits.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe('Benefits', () => {
expect(integration).toBeInTheDocument();
expect(execution).toBeInTheDocument();
});
it('should render personalize your trading information', () => {
it('should render personalise your trading information', () => {
const title = screen.getByText(/Personalise your trading$/i);
const information = screen.getByText(/create charts and views/i);

Expand All @@ -36,7 +36,7 @@ describe('Benefits', () => {
expect(title).toBeInTheDocument();
expect(information).toBeInTheDocument();
});
it('should render personalize image', () => {
it('should render personalise image', () => {
const image = screen.getByTestId('personalisation');
expect(image).toBeInTheDocument();
});
Expand Down