Merge pull request #2357 from appwrite/copilot/fix-115ced69-9c38-486e-a216-d8ceb16de856

This commit is contained in:
Darshan
2025-09-12 08:53:30 +05:30
committed by GitHub
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -144,7 +144,7 @@ function createFeedbackStore() {
message,
email,
customFields,
firstname: name || 'Unknown',
firstname: (name || 'Unknown').slice(0, 40),
metaFields: {
source: get(feedback).source,
orgId,
@@ -64,7 +64,7 @@
body: JSON.stringify({
subject: 'BAA Request',
email: email,
firstName: $user?.name ?? '',
firstName: ($user?.name ?? '').slice(0, 40),
message: `BAA request for ${$organization?.name ?? ''} (${$organization?.$id ?? ''})`,
tags: ['cloud'],
customFields: [
@@ -65,7 +65,7 @@
body: JSON.stringify({
subject: 'SOC-2 Request',
email: email,
firstName: $user?.name ?? '',
firstName: ($user?.name ?? '').slice(0, 40),
message: `SOC-2 request for ${$organization?.name ?? ''} (${$organization?.$id ?? ''})`,
tags: ['cloud'],
customFields: [
+1 -1
View File
@@ -49,7 +49,7 @@
body: JSON.stringify({
email: $user.email,
subject: $supportData.subject,
firstName: $user?.name || 'Unknown',
firstName: ($user?.name || 'Unknown').slice(0, 40),
message: $supportData.message,
tags: ['cloud'],
customFields: [