We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ea9a86e + 1ce0c00 commit 3d96a06Copy full SHA for 3d96a06
1 file changed
src/lib/stores/feedback.ts
@@ -135,8 +135,6 @@ function createFeedbackStore() {
135
customFields.push({ id: '56109', value: billingPlan });
136
}
137
138
- const platform = resolvedProfile.organizationPlatform;
139
-
140
const response = await fetch(`${VARS.GROWTH_ENDPOINT}/feedback`, {
141
method: 'POST',
142
headers: {
@@ -146,11 +144,10 @@ function createFeedbackStore() {
146
144
subject,
147
145
message,
148
email,
149
- platform,
150
customFields,
151
firstname: (name || 'Unknown').slice(0, 40),
152
metaFields: {
153
- platform: resolvedProfile.platform,
+ platform: resolvedProfile.organizationPlatform,
154
source: get(feedback).source,
155
orgId,
156
projectId,
0 commit comments