Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit f44c1e1

Browse files
committed
fix trans in author string
1 parent 3d934a1 commit f44c1e1

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

src/pages/landing/ebooks/forex.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,11 @@ const ForexEbook = () => {
5757
bgMobile="linear-gradient(0deg, #cc363f, #661b20);"
5858
introSub={localize('Your free guide on')}
5959
introMain={localize('How to trade the forex market')}
60-
authorDesc={localize(
61-
'This e-book has been brought to you by a veteran online trader and New York Times bestselling author, ',
62-
)}
60+
authorDesc={
61+
localize(
62+
'This e-book has been brought to you by a veteran online trader and New York Times bestselling author,',
63+
) + ' '
64+
}
6365
authorName={localize('Vince Stanzione.')}
6466
/>
6567
<Introduction

src/pages/landing/ebooks/stocks.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,11 @@ const StocksEbook = () => {
4343
ebook_utm_code="stock-ebook"
4444
introSub=""
4545
introMain={localize('Learn to trade Stock derivatives the smart way')}
46-
authorDesc={localize(
47-
'This e-book has been brought to you by a veteran online trader and New York Times bestselling author, ',
48-
)}
46+
authorDesc={
47+
localize(
48+
'This e-book has been brought to you by a veteran online trader and New York Times bestselling author,',
49+
) + ' '
50+
}
4951
authorName={localize('Vince Stanzione.')}
5052
/>
5153
<Introduction

0 commit comments

Comments
 (0)