Skip to content

Commit

Permalink
use help link instead of email for updated string (#240)
Browse files Browse the repository at this point in the history
Co-authored-by: Mike <[email protected]>
  • Loading branch information
mike-dydx and mike-dydx committed Oct 16, 2024
1 parent 8b41fb0 commit 5db6146
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public final class dydxRestrictionsWorker: BaseWorker {
path: "APP.COMPLIANCE.CLOSE_ONLY_BODY",
params: [
"DATE": compliance.expiresAt ?? "--",
"EMAIL": AbacusStateManager.shared.environment?.links?.complianceSupportEmail ?? "--"
"HELP_LINK": AbacusStateManager.shared.environment?.links?.help ?? "--"
]) ?? ""
case .blocked:
title = DataLocalizer.shared?.localize(
Expand All @@ -55,7 +55,7 @@ public final class dydxRestrictionsWorker: BaseWorker {
body = DataLocalizer.shared?.localize(
path: "APP.COMPLIANCE.PERMANENTLY_BLOCKED_BODY",
params: [
"EMAIL": AbacusStateManager.shared.environment?.links?.complianceSupportEmail ?? "--"
"HELP_LINK": AbacusStateManager.shared.environment?.links?.help ?? "--"
]) ?? ""
default:
return
Expand Down

0 comments on commit 5db6146

Please sign in to comment.