1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-03-21 12:29:03 +01:00

fix udpate stripe keys modal

This commit is contained in:
Sylvain 2021-06-09 16:49:36 +02:00
parent 1f07f4c2fb
commit c5db9e36ba

View File

@ -73,6 +73,8 @@ const StripeKeysFormComponent: React.FC<StripeKeysFormProps> = ({ onValidKeys, o
* Send a test call to the Stripe API to check if the inputted public key is valid
*/
const testPublicKey = (key: string) => {
setPublicKeyAddOnClassName('');
if (!key.match(/^pk_/)) {
setPublicKeyAddOn(<i className="fa fa-times" />);
setPublicKeyAddOnClassName('key-invalid');
@ -98,6 +100,8 @@ const StripeKeysFormComponent: React.FC<StripeKeysFormProps> = ({ onValidKeys, o
* Send a test call to the Stripe API to check if the inputted secret key is valid
*/
const testSecretKey = (key: string) => {
setSecretKeyAddOnClassName('');
if (!key.match(/^sk_/)) {
setSecretKeyAddOn(<i className="fa fa-times" />);
setSecretKeyAddOnClassName('key-invalid');