From 63c2a7f27086899b19e3b38b2ad45a93797bae81 Mon Sep 17 00:00:00 2001 From: Riccardo Balbo Date: Tue, 22 Oct 2024 10:51:33 +0200 Subject: [PATCH] mark fields as non editable --- wallets/blink/index.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/wallets/blink/index.js b/wallets/blink/index.js index b8e45e35..bd76a4ae 100644 --- a/wallets/blink/index.js +++ b/wallets/blink/index.js @@ -14,7 +14,8 @@ export const fields = [ help: `you can get an API key from [Blink Dashboard](${galoyBlinkDashboardUrl}).\nPlease make sure to select ONLY the 'Read' and 'Write' scopes when generating this API key.`, placeholder: 'blink_...', optional: 'for sending', - clientOnly: true + clientOnly: true, + editable: false }, { name: 'currency', @@ -25,8 +26,8 @@ export const fields = [ clear: true, autoComplete: 'off', optional: 'for sending', - clientOnly: true - + clientOnly: true, + editable: false }, { name: 'apiKeyRecv', @@ -35,7 +36,8 @@ export const fields = [ help: `you can get an API key from [Blink Dashboard](${galoyBlinkDashboardUrl}).\nPlease make sure to select ONLY the 'Read' and 'Receive' scopes when generating this API key.`, placeholder: 'blink_...', optional: 'for receiving', - serverOnly: true + serverOnly: true, + editable: false }, { name: 'currencyRecv',