Update platform variable to keep original casing

Changed platform variable to retain original casing.
This commit is contained in:
Harsh Mahajan
2025-12-20 13:11:27 +05:30
committed by GitHub
parent a242ab1f36
commit 515753bec6
+1 -1
View File
@@ -135,7 +135,7 @@ function createFeedbackStore() {
customFields.push({ id: '56109', value: billingPlan });
}
const platform = resolvedProfile.organizationPlatform.toLowerCase();
const platform = resolvedProfile.organizationPlatform;
const response = await fetch(`${VARS.GROWTH_ENDPOINT}/feedback`, {
method: 'POST',