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.
ANSWERED

Is Sprig Replays really available to all users? (Free tier)

Because I can't select a Delivery Platform when trying to set one up. Instead there is an Upgrade tag with a tooltip saying to "Upgrade to run standalone replays..." <https://docs.sprig.com/changelog/sprig-replays-is-now-available-to-all-users>

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?
ANSWERED

How does the new "Feedback" study work with other active studies?

If someone chooses to answer your continuous feedback study by clicking the button, are they now exempt from other active studies you might push to them based on your quarantine rules? Or does the feedback study not impact the other studies quarantine and sampling outcomes?

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?
ANSWERED

Which UpChunk package should we use?

Hi, I installed Sprig JavaScript SDK using yarn command from here: <https://docs.sprig.com/docs/web-javascript#install-with-npmyarn> usually all the required dependencies are picked up by Yarn, but looks like I am getting this error message in Chrome Dev console: ``` [Sprig] - recording functionality not configured due to missing UpChunk dependency ``` there are 6 'upchunk' related packages available: <https://www.npmjs.com/search?q=upchunk> which one should we use? Thank you!
ANSWERED

Wrong type re-definition for Window.Intercom in JavaScript SDK

Intercom second parameter should be optional, because there are methods like Intercom('show'); <https://developers.intercom.com/installing-intercom/web/methods/#intercomshow> But in your JavaScript SDK code it is defined as required, and it breaks all other usages of Intercom in our App ``` Intercom: { ul_wasVisible?: boolean } & (( method: string, data: unknown, <===== SHOULD BE OPTIONAL ) => void); ``` please see line 2824 here: <https://www.npmjs.com/package/@sprig-technologies/sprig-browser?activeTab=code>