Improve bookmark save UX and fix toast positioning#12
Merged
pheuberger merged 4 commits intomainfrom Feb 5, 2026
Merged
Conversation
The keyboard shortcut to submit the bookmark dialog was broken. Now Ctrl+Enter (or Cmd+Enter on Mac) properly saves from any field. https://claude.ai/code/session_01H5CR653mxrDbtqwK7aUA6G
The hint incorrectly showed "Enter to save" which doesn't work when focused on the description textarea. Updated to "Ctrl+Enter to save". https://claude.ai/code/session_01H5CR653mxrDbtqwK7aUA6G
Notifications were horizontally centered at the bottom of the screen. Moved them to the right bottom corner for better UX. https://claude.ai/code/session_01H5CR653mxrDbtqwK7aUA6G
The keyboard shortcut to submit the bookmark dialog was broken. Now uses the useHotkeys hook with enableOnInputs: true to properly handle Ctrl+Enter (or Cmd+Enter on Mac) from any field including textarea. https://claude.ai/code/session_01H5CR653mxrDbtqwK7aUA6G
✅ Deploy Preview for hypermarkk ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
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.
Summary
This PR improves the user experience for saving bookmarks and fixes the toast notification positioning to be more accessible and visually consistent.
Key Changes
Bookmark Inline Card
EntertoCtrl+Enter(orCmd+Enteron Mac) to avoid conflicts with text input in description fieldToast Notifications
left-1/2 -translate-x-1/2) to bottom-right (right-4) for better visibility and reduced overlap with contentgap-3togap-4for better spacingwhitespace-nowrapto action button to prevent text wrappingflex-shrink-0to ensure consistent sizingToastContainercomponentImplementation Details
The bookmark save change uses
e.ctrlKey || e.metaKeyto support both Windows/Linux (Ctrl) and macOS (Cmd) conventions. The toast positioning change aligns with common UI patterns where notifications appear in the corner rather than centered, reducing visual distraction and improving accessibility.https://claude.ai/code/session_01H5CR653mxrDbtqwK7aUA6G