-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feedback Option #70
base: main
Are you sure you want to change the base?
Feedback Option #70
Conversation
Ohhh sorry augustin. we should have it be automatic! so theyre already signed in. client side (the app) can just send their api key and the feedback as text. so just one box -> feedback and one button -> send. and we should have auto close, with a vscode notif in the bottom right that says "Feedback sent successfully!" (or error) so basically:
my bad for not making this clear earlier |
No worries! I’ll make the changes. Thanks for the feedback |
I updated the feedback page with just the text box and the vscode notifications when the user submits. I also added the headers and API key to the endpoint you mentioned. If there are any issues, let me know. |
gui/src/App.tsx
Outdated
const router = createMemoryRouter([ | ||
{ | ||
initialEntries: [window.isPearOverlay ? "/inventory" : window.initialRoute], | ||
path: "/", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is all this removed?
gui/src/App.tsx
Outdated
{ | ||
path: "/feedback", | ||
element: <Feedback/>, | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you can just add /feedback route here, leave the rest as it is 😄
gui/src/components/Layout.tsx
Outdated
"/aiderMode", | ||
"/inventory", | ||
"/inventory/aiderMode", | ||
"/inventory/perplexityMode" | ||
]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dont remove these, we want to hide footers on those routes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't remove those footer line, I'm not sure how they were removed.
This reverts commit e7ae292.
Description ✏️
I added the feedback page in the submodule.
Checklist ✅