From 24a075059a5edea885ed7f3d2f927ada46063bd8 Mon Sep 17 00:00:00 2001 From: sanjam chhatwal Date: Tue, 1 Aug 2023 10:08:18 +0400 Subject: [PATCH 1/2] fix: spelling issue --- src/features/Home/Benefits/Benefits.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/Home/Benefits/Benefits.tsx b/src/features/Home/Benefits/Benefits.tsx index b9aa4a801..af53c09d7 100644 --- a/src/features/Home/Benefits/Benefits.tsx +++ b/src/features/Home/Benefits/Benefits.tsx @@ -54,7 +54,7 @@ export const Benefits = () => {

Personalise your trading

- 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. From a0182fc5f3bbca8670f10cc366a57a26ee1856d5 Mon Sep 17 00:00:00 2001 From: sanjam chhatwal Date: Tue, 1 Aug 2023 10:08:56 +0400 Subject: [PATCH 2/2] fix: spelling issue --- src/features/Home/Benefits/__tests__/Benefits.test.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/features/Home/Benefits/__tests__/Benefits.test.tsx b/src/features/Home/Benefits/__tests__/Benefits.test.tsx index ffc888d55..1793259b2 100644 --- a/src/features/Home/Benefits/__tests__/Benefits.test.tsx +++ b/src/features/Home/Benefits/__tests__/Benefits.test.tsx @@ -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); @@ -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(); });