We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bc25536 + 515753b commit 482de07Copy full SHA for 482de07
1 file changed
src/lib/stores/feedback.ts
@@ -135,6 +135,8 @@ 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: {
@@ -144,6 +146,7 @@ function createFeedbackStore() {
144
146
subject,
145
147
message,
148
email,
149
+ platform,
150
customFields,
151
firstname: (name || 'Unknown').slice(0, 40),
152
metaFields: {
0 commit comments