@farcaster/miniapp-sdk 0.0.0-canary-20250726165352 → 0.0.0-canary-20250816182708

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/sdk.js CHANGED
@@ -9,10 +9,10 @@ let cachedIsInMiniAppResult = null;
9
9
  /**
10
10
  * Determines if the current environment is a MiniApp context.
11
11
  *
12
- * @param timeoutMs - Optional timeout in milliseconds (default: 50)
12
+ * @param timeoutMs - Optional timeout in milliseconds (default: 1000)
13
13
  * @returns Promise resolving to boolean indicating if in MiniApp context
14
14
  */
15
- async function isInMiniApp(timeoutMs = 50) {
15
+ async function isInMiniApp(timeoutMs = 1000) {
16
16
  // Return cached result if we've already determined we are in a MiniApp
17
17
  if (cachedIsInMiniAppResult === true) {
18
18
  return true;