Skip to content

Commit

Permalink
[WALL] Jim/WALL-4937/update content on the cashier deposit page (#17385)
Browse files Browse the repository at this point in the history
* chore: update content on the cashier deposit page

* chore: remove extra space and add a full stop
  • Loading branch information
jim-deriv authored Nov 15, 2024
1 parent 887efa5 commit 2f3ad11
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe('SideNoteFAQ', () => {
it('should render faq regarding deposit', () => {
render(<SideNoteFAQ transaction_type='deposit' />, { wrapper });

expect(screen.getByText("Why can't I see deposited funds in my Deriv account?")).toBeInTheDocument();
expect(screen.getByText('Why cant I see the funds deposited in my Deriv account?')).toBeInTheDocument();
expect(screen.getByText('What do I do if I have reached my deposit limit?')).toBeInTheDocument();
expect(screen.getByText('Why is my card/e-wallet not working?')).toBeInTheDocument();
expect(screen.getByText("Can I use someone else's payment method?")).toBeInTheDocument();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ const SideNoteFAQ = ({ transaction_type }: TSideNoteFAQProps) => {
const deposit_faq_list = useMemo(() => {
return [
{
header: localize("Why can't I see deposited funds in my Deriv account?"),
header: localize('Why cant I see the funds deposited in my Deriv account?'),
content: (
<Localize
i18n_default_text="We process your deposits internally within 24 hours (depending on internal checks and your payment method). If you don't see your funds reflected after this time, please contact us via <0>live chat</0> with proof of your transaction, including the amount, date, and time."
i18n_default_text='We process deposits immediately. If your funds don’t appear in your account within 24 hours, contact us via <0>live chat</0>. Provide the transaction details, including the amount, date, and time, so we can assist you quickly.'
components={[
<span key={0} className='link' onClick={onClickHandler} onKeyDown={onClickHandler} />,
]}
Expand Down

0 comments on commit 2f3ad11

Please sign in to comment.