Skip to content

Commit

Permalink
unit test and css fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ribeiroguilherme committed Feb 13, 2025
1 parent 5c15b72 commit 61f49c4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

.adyen-checkout__button.adyen-checkout__button--fastlane-info-modal {
vertical-align: bottom;
margin-left: 4px;
margin-left: token(spacer-020);
width: 20px;
height: 20px;
line-height: 0;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
function mobileNumberFormatter(value: string): string {
if (!value) {
return '';
}

let input = value;
// Allow only numbers
input = input.replace(/\D/g, '');
Expand Down

0 comments on commit 61f49c4

Please sign in to comment.