diff --git a/android/app/src/main/res/values/strings.xml b/android/app/src/main/res/values/strings.xml index 473aa6a..766a8eb 100644 --- a/android/app/src/main/res/values/strings.xml +++ b/android/app/src/main/res/values/strings.xml @@ -1,3 +1,3 @@ - laconic_wallet + Laconic diff --git a/components/HDPath.tsx b/components/HDPath.tsx index 9b4d44f..59ff7eb 100644 --- a/components/HDPath.tsx +++ b/components/HDPath.tsx @@ -25,6 +25,10 @@ const HDPath = ({ }); const handleChange = (key: keyof PathState, value: string) => { + if (key === 'secondNumber' && value !== '' && !['0', '1'].includes(value)) { + return; + } + setPath({ ...path, [key]: value.replace(/[^0-9]/g, ''),