Android build v1.1.38

This commit is contained in:
Warren H
2026-07-09 21:57:51 -04:00
parent 8ffa6db317
commit 4766a34cd3
10 changed files with 685 additions and 331 deletions
+5 -1
View File
@@ -1043,7 +1043,11 @@ export function InputProvider({ children }: { children: ReactNode }) {
<div className="controller-keyboard-heading">
<div>
<p className="eyebrow">Controller Keyboard</p>
<strong>{keyboardInput.value || 'Enter text'}</strong>
<strong>
{keyboardInput.type === 'password'
? '•'.repeat(keyboardInput.value.length) || 'Enter password'
: keyboardInput.value || 'Enter text'}
</strong>
</div>
<button onClick={closeKeyboard} type="button">Done</button>
</div>