Skip to content

Commit fc5ccb5

Browse files
authored
Merge branch 'update-btc-direct-otc-link'
2 parents 945c7c3 + c5bf2de commit fc5ccb5

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

backend/backend.go

+1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ var fixedURLWhitelist = []string{
8989
"https://pocketbitcoin.com/",
9090
// BTCDirect
9191
"https://btcdirect.eu/",
92+
"https://start.btcdirect.eu/",
9293
// Bitsurance
9394
"https://www.bitsurance.eu/",
9495
"https://get.bitsurance.eu/",

frontends/web/src/routes/exchange/components/infocontent.tsx

+5-5
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ import style from './infocontent.module.css';
2525
export const getBTCDirectOTCLink = () => {
2626
switch (i18n.resolvedLanguage) {
2727
case 'de':
28-
return 'https://btcdirect.eu/de-at/private-trading-contact?BitBox';
28+
return 'https://start.btcdirect.eu/de/private-trading-bitbox';
2929
case 'nl':
30-
return 'https://btcdirect.eu/nl-nl/private-trading-contact?BitBox';
30+
return 'https://start.btcdirect.eu/nl/private-trading-bitbox';
3131
case 'es':
32-
return 'https://btcdirect.eu/es-es/private-trading-contactanos?BitBox';
32+
return 'https://start.btcdirect.eu/es/private-trading-bitbox';
3333
case 'fr':
34-
return 'https://btcdirect.eu/fr-fr/private-trading-contact?BitBox';
34+
return 'https://start.btcdirect.eu/fr/private-trading-bitbox';
3535
default:
36-
return 'https://btcdirect.eu/en-eu/private-trading-contact?BitBox';
36+
return 'https://start.btcdirect.eu/private-trading-bitbox';
3737
}
3838
};
3939

0 commit comments

Comments
 (0)