fix: link survey responses may fail when custom survey url is set (#791)

This commit is contained in:
Matti Nannt
2023-09-10 14:33:04 +09:00
committed by GitHub
parent 0a08d7df68
commit ab668c307b

View File

@@ -42,7 +42,7 @@ export default function LinkSurvey({
() =>
new ResponseQueue(
{
apiHost: typeof window !== "undefined" ? window.location?.origin : WEBAPP_URL,
apiHost: WEBAPP_URL,
retryAttempts: 2,
onResponseSendingFailed: (response) => {
alert(`Failed to send response: ${JSON.stringify(response, null, 2)}`);