Fix copy now that BCH is supported

Stephen Paul Weber created

Change summary

forms/registration/activate.rb | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

Detailed changes

forms/registration/activate.rb 🔗

@@ -4,7 +4,7 @@ title "Activate JMP"
 instructions <<~I
 	You've selected #{@tel} as your JMP number.
 	To activate your account, you can either deposit $#{CONFIG[:activation_amount]} to your balance or enter your referral code if you have one.
-	(If you'd like to pay in a cryptocurrency other than Bitcoin, currently we recommend using a service like simpleswap.io, morphtoken.com, changenow.io, or godex.io. Manual payment via Bitcoin Cash is also available if you contact support.)
+	(If you'd like to pay in another cryptocurrency, currently we recommend using a service like simpleswap.io, morphtoken.com, changenow.io, or godex.io.)
 I
 
 field(
@@ -21,6 +21,10 @@ field(
 			value: "bitcoin",
 			label: "Bitcoin"
 		},
+		{
+			value: "bch",
+			label: "Bitcoin Cash"
+		},
 		{
 			value: "code",
 			label: "Referral Code"
@@ -28,10 +32,6 @@ field(
 		{
 			value: "mail",
 			label: "Mail or Interac e-Transfer"
-		},
-		{
-			value: "bch",
-			label: "Bitcoin Cash"
 		}
 	]
 )