We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bc28d7 commit 7a7fc00Copy full SHA for 7a7fc00
1 file changed
src/App.tsx
@@ -1785,9 +1785,7 @@ function App() {
1785
{
1786
const keyLc = e.key.toLowerCase();
1787
const hasClipboardModifier =
1788
- !e.altKey &&
1789
- !e.shiftKey &&
1790
- ((isMac && e.metaKey && !e.ctrlKey) || (!isMac && e.ctrlKey));
+ !e.altKey && !e.shiftKey && ((isMac && e.metaKey && !e.ctrlKey) || (!isMac && e.ctrlKey));
1791
1792
if (hasClipboardModifier && keyLc === 'c' && !inEditable) {
1793
const state = useAppStore.getState();
0 commit comments