Skip to content

Commit

Permalink
use help link instead of email for updated string
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-dydx committed Sep 4, 2024
1 parent ef1a0fa commit 02b11e6
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 02b11e6

Please sign in to comment.