- {translate({ message: `By registering your application, you acknowledge that you‘ve read and accepted the Deriv API`})} {' '}
+ {translate({ message: `By registering your application, you acknowledge that you‘ve read and accepted the Deriv API` })} {' '}
-
-
- terms and conditions
-
-
+ terms and conditions
+
{renderButtons &&
{renderButtons()}
}
diff --git a/src/features/dashboard/components/app-register/app-register.scss b/src/features/dashboard/components/app-register/app-register.scss
index ac355eaf4..660192258 100644
--- a/src/features/dashboard/components/app-register/app-register.scss
+++ b/src/features/dashboard/components/app-register/app-register.scss
@@ -72,6 +72,10 @@
top: -4px;
}
}
+
+ &__link:hover {
+ color: var(--component-textIcon-normal-prominent);
+ }
}
}
diff --git a/src/features/dashboard/components/app-register/app-register.tsx b/src/features/dashboard/components/app-register/app-register.tsx
index 29a46a1ba..64af30077 100644
--- a/src/features/dashboard/components/app-register/app-register.tsx
+++ b/src/features/dashboard/components/app-register/app-register.tsx
@@ -1,8 +1,8 @@
import React, { useCallback, useEffect, useState } from 'react';
import { useForm } from 'react-hook-form';
import Translate, { translate } from '@docusaurus/Translate';
-import { Button, Text } from '@deriv-com/quill-ui';
import { ApplicationObject } from '@deriv/api-types';
+import { Button, Link, Text } from '@deriv-com/quill-ui';
import { yupResolver } from '@hookform/resolvers/yup';
import CustomCheckbox from '@site/src/components/CustomCheckbox';
import useDeviceType from '@site/src/hooks/useDeviceType';
@@ -26,14 +26,15 @@ const TermsAndConditions: React.FC = ({ register }) =>
diff --git a/src/features/dashboard/manage-dashboard/manage-dashboard.scss b/src/features/dashboard/manage-dashboard/manage-dashboard.scss
index 9f47c63b1..6c439ba0b 100644
--- a/src/features/dashboard/manage-dashboard/manage-dashboard.scss
+++ b/src/features/dashboard/manage-dashboard/manage-dashboard.scss
@@ -4,4 +4,8 @@
.breadcrumbs-wrapper {
padding: 1rem 0;
+
+ a, a:active, a:visited {
+ text-decoration: none;
+ }
}