(snapshot)
| 1654 | } |
| 1655 | |
| 1656 | function looksLikeKeyboardTipQuery(snapshot) { |
| 1657 | const text = JSON.stringify(snapshot?.matches ?? snapshot ?? []); |
| 1658 | return /Speed up your typing/i.test(text) && /\bContinue\b/.test(text); |
| 1659 | } |
| 1660 | |
| 1661 | function keyboardTipContinueTapTarget(snapshot) { |
| 1662 | const nodes = compactQueryNodes(snapshot); |
no outgoing calls
no test coverage detected