diff options
| author | Tobias Järvelöv <tobias.jarvelov@mullvad.net> | 2025-04-23 12:05:18 +0200 |
|---|---|---|
| committer | Markus Pettersson <markus.pettersson@mullvad.net> | 2025-04-24 10:08:38 +0200 |
| commit | d8e249c56be4fa6a251267ef8b75d76195538d89 (patch) | |
| tree | 104dcb4c0d341d29cdcf7223e89fc0c7256a98bb | |
| parent | c02db9f0953f31b42a50d974251f00d2c51211d2 (diff) | |
| download | mullvadvpn-d8e249c56be4fa6a251267ef8b75d76195538d89.tar.xz mullvadvpn-d8e249c56be4fa6a251267ef8b75d76195538d89.zip | |
Remove language from URL path
The language should not be specified as it will be handled by the
server. The server will redirect the user to the final URL based
on the language their browser sends in the Accept-Language header.
| -rw-r--r-- | desktop/packages/mullvad-vpn/src/shared/constants/urls.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/packages/mullvad-vpn/src/shared/constants/urls.ts b/desktop/packages/mullvad-vpn/src/shared/constants/urls.ts index f9a77a92b0..435200f7aa 100644 --- a/desktop/packages/mullvad-vpn/src/shared/constants/urls.ts +++ b/desktop/packages/mullvad-vpn/src/shared/constants/urls.ts @@ -5,7 +5,7 @@ export const urls = { faq: 'https://mullvad.net/help/tag/mullvad-app/', privacyGuide: 'https://mullvad.net/help/first-steps-towards-online-privacy/', download: 'https://mullvad.net/download/vpn/', - removingOpenVpnBlog: 'https://mullvad.net/en/blog/removing-openvpn-15th-january-2026', + removingOpenVpnBlog: 'https://mullvad.net/blog/removing-openvpn-15th-january-2026', } as const; type BaseUrl = (typeof urls)[keyof typeof urls]; |
