auq-mcp-server 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,7 +16,7 @@ export const MultiLineTextInput = ({ isFocused = true, onChange, onSubmit, place
16
16
  if (key.shift) {
17
17
  onChange(value + "\n");
18
18
  }
19
- else if (onSubmit && value.trim().length > 0) {
19
+ else if (onSubmit) {
20
20
  onSubmit();
21
21
  }
22
22
  return;
@@ -26,9 +26,9 @@ export const MultiLineTextInput = ({ isFocused = true, onChange, onSubmit, place
26
26
  onChange(value + "\n");
27
27
  return;
28
28
  }
29
- // Enter: Submit (only if content is non-empty)
29
+ // Enter: Submit (empty input allowed)
30
30
  if (key.return) {
31
- if (onSubmit && value.trim().length > 0) {
31
+ if (onSubmit) {
32
32
  onSubmit();
33
33
  }
34
34
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "auq-mcp-server",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "main": "dist/index.js",
5
5
  "bin": {
6
6
  "auq": "dist/bin/auq.js"