Discussions

Ask a Question

Is Replay working on the Sprig development environment?

I created a survey and turned on one toggle for "AddReplay," but it seems it is not working. I can see the survey, but when I checked the responses, no recordings were attached to it.

React native new arch issue with method overload

I'm getting this ``` E | ReactNativeJS ▶︎ Error: Exception in HostObject::get for prop 'UserLeapBindings': com.facebook.react.internal.turbomodule.core.TurboModuleInteropUtils$ParsingException: Unable to parse @ReactMethod annotations from native module: UserLeapBindings. Details: Module exports two methods to JavaScript with the same name: "configure ``` I don't see where I could submit a PR to fix it so here's a patch package for it ``` diff --git a/node_modules/react-native-userleap/android/src/main/java/com/userleap/reactnative/UserLeapModule.java b/node_modules/react-native-userleap/android/src/main/java/com/userleap/reactnative/UserLeapModule.java index 06c35af..21bbc4a 100644 --- a/node_modules/react-native-userleap/android/src/main/java/com/userleap/reactnative/UserLeapModule.java +++ b/node_modules/react-native-userleap/android/src/main/java/com/userleap/reactnative/UserLeapModule.java @@ -51,14 +51,13 @@ public class UserLeapModule extends ReactContextBaseJavaModule { return visitorIdentifierObject == null ? "" : visitorIdentifierObject; } - @ReactMethod - public void configure(String environment) { - UserLeap.INSTANCE.configure(reactContext, environment); - } - @ReactMethod public void configure(String environment, ReadableMap configuration) { - UserLeap.INSTANCE.configure(reactContext, environment, stringifyMap(configuration)); + if (configuration == null) { + UserLeap.INSTANCE.configure(reactContext, environment); + } else { + UserLeap.INSTANCE.configure(reactContext, environment, stringifyMap(configuration)); + } } @ReactMethod ``` <br /> I did debug the runtime and despite having only a call for the configure(env) signature, it was always called for the two args signature, and the weird part is that the `configuration` was never null... dunno, but this seems to solve for me

Does Spring work in i frames

Does Spring work in i frames

Sprig stopped working after update

After the update I'm getting: ``` Module not found: Error: Can't resolve '@sprig-technologies/sprig-browser' ``` How should I import Sprig while still using cjs?

Is Sprig compatible with PWAs built on Ionic framework?

Is Sprig compatible with PWAs built on Ionic framework?

Replays

Hello. I am looking for a software that can transcribe and create highlights/tags for video interviews. I like the replays feature and was wondering if this can also be used for video interviews?

Does Sprig JavaScript SDK work in ReactJS Web application?

I installed the SDK using yarn and I added this to one of the components: ``` import { sprig } from '@sprig-technologies/sprig-browser'; const Sprig = sprig.configure({ environmentId: '<OUR ID>', }); ``` But I am getting errors: ``` - error Error [ReferenceError]: window is not defined at file:/frontend-web/node_modules/@sprig-technologies/sprig-browser/dist/index-IMQ1RWe8.js:209:1 at ModuleJob.run (node:internal/modules/esm/module_job:195:25) at async ModuleLoader.import (node:internal/modules/esm/loader:336:24) at async importModuleDynamicallyWrapper (node:internal/vm/module:429:15) { digest: undefined } ``` Please help

How do I point (integrate) the in app survey to my web application

How do I point (integrate) the in app survey to my web application

Using Sprig iOS SDK with SwiftUI

Hello, Is there a guide on how to use the Sprig iOS SDK with SwiftUI?

Link Study Heading Change

Hello Team, Is there any way I can change the header name of a Link study? It is by default picking my product name at the top. Can I change it?