We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2ed981 commit d163ffcCopy full SHA for d163ffc
src/components/app.tsx
@@ -74,6 +74,10 @@ const AppKeyboardShortcuts = (props: {
74
props.navigate('/modify');
75
e.preventDefault();
76
}, [props.navigate]);
77
+ useHotkeys('Ctrl+4,Cmd+4', (e) => {
78
+ props.navigate('/send');
79
+ e.preventDefault();
80
+ }, [props.navigate]);
81
useHotkeys('Ctrl+9,Cmd+9', (e) => {
82
if (props.canVisitSettings) props.navigate('/settings');
83
0 commit comments