diff --git a/apps/webapp/app/components/Feedback.tsx b/apps/webapp/app/components/Feedback.tsx index 6caec8308..158b499d6 100644 --- a/apps/webapp/app/components/Feedback.tsx +++ b/apps/webapp/app/components/Feedback.tsx @@ -55,16 +55,6 @@ export function Feedback({ button, defaultValue = "bug" }: FeedbackProps) { {button} - Get help from the community - - The quickest way to get help and feedback or to provide advice to others is to join our - Discord. - -
- - -
-
Send us an email We read every message and respond quickly.
@@ -106,6 +96,8 @@ export function Feedback({ button, defaultValue = "bug" }: FeedbackProps) {

+ +
Troubleshooting If you're having trouble, check out our documentation or the Trigger.dev Status page. @@ -134,44 +126,20 @@ function DiscordBanner({ className }: { className?: string }) { href="https://trigger.dev/discord" target="_blank" className={cn( - "group mb-4 flex w-full items-center justify-between rounded-md border border-charcoal-600 p-4 transition hover:border-text-link", + "group mb-4 flex w-full items-center justify-between rounded-md border border-grid-bright bg-charcoal-750 p-4 pl-6 transition hover:border-text-link", className )} > -
- - - Join our Discord community - - - Get help or answer questions from the Trigger.dev community. - +
+ +
+ + Join our Discord community + + The quickest way to get answers from the Trigger.dev community. +
); } - -function GitHubDiscussionsBanner({ className }: { className?: string }) { - return ( - -
- - - View our GitHub Discussions - - - Post your questions, feedback, and feature requests on GitHub. - -
- -
- ); -}