mirror of
https://github.com/fmhy/edit.git
synced 2025-07-31 08:12:23 +10:00
chore(Feedback): remove bug
type
Nobody was using the type as intended, so this is part 1 of me phasing it out.
This commit is contained in:
parent
59aa4be68c
commit
e3685783c8
37 changed files with 2098 additions and 1991 deletions
|
@ -18,7 +18,7 @@ import z from 'zod'
|
|||
|
||||
export const FeedbackSchema = z.object({
|
||||
message: z.string().min(5).max(1000),
|
||||
type: z.enum(['bug', 'suggestion', 'appreciation', 'other']),
|
||||
type: z.enum(['suggestion', 'appreciation', 'other']),
|
||||
page: z.string().min(3).max(20),
|
||||
// For heading based feedback
|
||||
heading: z.string().min(3).max(20).optional()
|
||||
|
@ -34,8 +34,6 @@ export const feedbackOptions: Option[] = [
|
|||
label: '💡 I have a suggestion',
|
||||
value: 'suggestion'
|
||||
},
|
||||
|
||||
{ label: '🐛 I want to report a website bug', value: 'bug' },
|
||||
{
|
||||
label: '👍 I appreciate the work',
|
||||
value: 'appreciation'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue