diff --git a/assets/components/tracking/connector/ConnectorsList.tsx b/assets/components/tracking/connector/ConnectorsList.tsx
index 3151de5..0df8af5 100644
--- a/assets/components/tracking/connector/ConnectorsList.tsx
+++ b/assets/components/tracking/connector/ConnectorsList.tsx
@@ -52,9 +52,9 @@ export function ConnectorsList({connectors, onDelete}: { connectors: ConnectorEl
{t`You can stop using a connector at any time. To delete a connector, you must remove it from each linked Watchlist.
The creation date corresponds to the date on which you consented to the creation of the connector and on which you declared in particular that you fulfilled the conditions of use of the supplier's API, waived the right of withdrawal and were of the minimum age to consent to these conditions.`}
-
- {t`The Provider’s conditions are accessible by following this hyperlink.`}
-
+ {providersConfig[connector.provider].tosLink &&
+ {t`The Provider’s conditions are accessible by following this hyperlink.`}
+ }
>
}/>
diff --git a/assets/utils/api/connectors.ts b/assets/utils/api/connectors.ts
index a5aa58d..df3e7cf 100644
--- a/assets/utils/api/connectors.ts
+++ b/assets/utils/api/connectors.ts
@@ -6,7 +6,8 @@ export enum ConnectorProvider {
Gandi = 'gandi',
AutoDNS = 'autodns',
Namecheap = 'namecheap',
- 'Name.com' = 'namecom'
+ 'Name.com' = 'namecom',
+ EPP = 'epp'
}
export interface Connector {
diff --git a/assets/utils/providers/forms/DefaultConnectorFormItems.tsx b/assets/utils/providers/forms/DefaultConnectorFormItems.tsx
index c843c29..2c5271e 100644
--- a/assets/utils/providers/forms/DefaultConnectorFormItems.tsx
+++ b/assets/utils/providers/forms/DefaultConnectorFormItems.tsx
@@ -2,7 +2,7 @@ import {Checkbox, Form, Typography} from "antd"
import {t} from "ttag"
import React from "react"
-export default function DefaultConnectorFormItems({tosLink}: { tosLink: string }) {
+export default function DefaultConnectorFormItems({tosLink}: { tosLink?: string }) {
return <>