Skip to content
This repository was archived by the owner on Feb 22, 2024. It is now read-only.
Draft
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/javascript/app/common/redirect_banner.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ const RedirectBanner = (() => {
};

const handleRedirect = () => {
window.location.href = 'https://eu.deriv.com/';
window.location.href = '/move-to-deriv/';
};
const handleRowRedirect = () => {
window.location.href = 'https://deriv.com/';
window.location.href = '/binary-to-deriv/';
};

const loginOnLoad = () => {
Expand Down
2 changes: 1 addition & 1 deletion src/javascript/app/common/traffic_source.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const TrafficSource = (() => {
if (shouldOverwrite(new_values, current_values)) {
clearData();
Object.keys(new_values).forEach((key) => {
// cookie.set(key, new_values[key], { sameSite: 'none', secure: true });
cookie.set(key, new_values[key], { sameSite: 'none', secure: true });
});
}

Expand Down