We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cdc2ac commit bb1199eCopy full SHA for bb1199e
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@rapidaai/react",
3
- "version": "1.1.61",
+ "version": "1.1.62",
4
"description": "An easy to use react client for building generative ai application using Rapida platform.",
5
"repository": {
6
"type": "git",
src/audio/compatibility.ts
@@ -26,6 +26,7 @@ export function isIosDevice(): boolean {
26
if (typeof navigator === "undefined") return false;
27
return (
28
/iPad|iPhone|iPod/.test(navigator.userAgent) ||
29
+ /iPad|iPhone|iPod/.test(navigator.platform) ||
30
// iPad on iOS 13+ reports as "MacIntel" with touch support
31
(navigator.platform === "MacIntel" && navigator.maxTouchPoints > 1) ||
32
(navigator.userAgent.includes("Mac") && "ontouchend" in document)
0 commit comments