We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 954b6fb + 236400c commit 58a47fbCopy full SHA for 58a47fb
src/pages/index.tsx
@@ -154,7 +154,7 @@ const Home: NextPage = () => {
154
| React.KeyboardEvent<HTMLTextAreaElement>
155
) => {
156
// Only Enter is pressed, execute the function
157
- if (e.key === "Enter" && !disableDeployAgent && !e.shiftKey) {
+ if (e.ctrlKey && e.key === "Enter" && !disableDeployAgent) {
158
if (isAgentPaused) {
159
handleContinue();
160
}
0 commit comments