You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/lib/stores/feedback.ts
+8-8
Original file line number
Diff line number
Diff line change
@@ -30,14 +30,14 @@ export type FeedbackOption = {
30
30
exportconstfeedbackOptions: FeedbackOption[]=[
31
31
{
32
32
type: 'general',
33
-
title: 'How can we improve?',
34
-
desc: 'Your feedback is important to us. Please be honest and tell us what you think.',
33
+
title: 'Help us improve Appwrite',
34
+
desc: 'Appwrite evolves with your input. Share your thoughts and help us improve Appwrite.',
35
35
component: FeedbackGeneral
36
36
},
37
37
{
38
38
type: 'nps',
39
-
title: 'How are we doing?',
40
-
desc: "At Appwrite, we value the feedback of our users. That means you! We'd love to hear what you think.",
39
+
title: 'Help us improve Appwrite',
40
+
desc: 'Appwrite evolves with your input. Share your thoughts and help us improve Appwrite. If you would like to be contacted regarding your feedback, please share your contact details below.',
41
41
component: FeedbackNps
42
42
}
43
43
];
@@ -49,7 +49,7 @@ function createFeedbackDataStore() {
49
49
message: '',
50
50
name: '',
51
51
email: '',
52
-
value: 0
52
+
value: null
53
53
});
54
54
return{
55
55
set,
@@ -60,7 +60,7 @@ function createFeedbackDataStore() {
0 commit comments