Draft
Ensure user comments are confirmed as saved on the Map screen#86
Conversation
- Wire up onSubmitSuccess and onSubmitError callbacks on FeedbackKitProvider in App.tsx so that every feedback/comment submission (session task comments and issue reports) shows a dismissible toast notification confirming the comment was saved, with a direct link to the created GitHub issue. - Add SubmissionToast component that auto-dismisses after 6 seconds and includes a 'View →' link to the GitHub issue for successful submissions. - Fix vite.config.ts alias for @thd-spatial-ai/feedback-kit to fall back to the installed npm dist when the local sibling source tree is absent, so that CI/production builds succeed even without the feedback-kit repo checked out.
Copilot
AI
changed the title
[WIP] Fix issue with user comments on Map screen not saving
Ensure user comments are confirmed as saved on the Map screen
Jun 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Users had no way to verify their feedback comments were received after submission — the app gave no application-level signal of success or failure.
Changes
src/app/App.tsxSubmissionToastcomponent: fixed-position, auto-dismissing (6 s) notification rendered on every feedback submissiononSubmitSuccess/onSubmitErrorintoFeedbackKitProvider— these fire for both session task comments and issue reportsvite.config.ts@thd-spatial-ai/feedback-kitalias was hard-coded to a local sibling source tree (../feedback-kit/src/index.ts) that doesn't exist in CI. Now checks for that path withfs.existsSyncand falls back to the installed npm dist when absent.