Skip to content
This repository has been archived by the owner on Sep 1, 2024. It is now read-only.

Commit

Permalink
text fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ohadkoren committed Jan 31, 2024
1 parent 5af7570 commit bc92a27
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion portal/src/app/components/sub-header/SubHeader.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ describe('SubHeader', () => {
(Button as jest.Mock).mockImplementation(() => <div>Button</div>);
const { container, getByText }: RenderResult = render(<SubHeader handleCloseClick={jest.fn()} />, { wrapper: MemoryRouter });
expect(container.firstChild).toMatchSnapshot();
expect(getByText('That’s what are we doing on each iteration:')).toBeTruthy();
expect(getByText('That’s what we are doing on each iteration:')).toBeTruthy();
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ exports[`SubHeader renders sub header 1`] = `
<div
class="sub_header_title"
>
That’s what are we doing on each iteration:
That’s what we are doing on each iteration:
</div>
<div
class="items_wrapper"
Expand Down
2 changes: 1 addition & 1 deletion portal/src/app/components/sub-header/translate/en.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// eslint-disable-next-line @typescript-eslint/typedef
export const SUB_HEADER_EN = {
TITLE: 'That’s what are we doing on each iteration:',
TITLE: 'That’s what we are doing on each iteration:',
DESCRIPTIONS: {
STEP_1: 'Initiating handshake\nusing the selected\ncryptographic algorithm.',
STEP_2: 'Exchanging keys using\nthe selected algorithm to\ncreate a shared secret.',
Expand Down

0 comments on commit bc92a27

Please sign in to comment.