@ridit/milo 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.
- package/dist/index.mjs +0 -1
- package/package.json +1 -1
- package/src/screens/REPL.tsx +1 -2
package/dist/index.mjs
CHANGED
|
@@ -106551,7 +106551,6 @@ function REPL() {
|
|
|
106551
106551
|
children: line.repeat(columns)
|
|
106552
106552
|
}, undefined, false, undefined, this),
|
|
106553
106553
|
/* @__PURE__ */ jsxDEV16(Box13, {
|
|
106554
|
-
minHeight: pendingPermission ? 10 : pendingWizard ? 10 : 3,
|
|
106555
106554
|
children: pendingPermission ? /* @__PURE__ */ jsxDEV16(PermissionCard, {
|
|
106556
106555
|
permission: pendingPermission,
|
|
106557
106556
|
onDecide: decide
|
package/package.json
CHANGED
package/src/screens/REPL.tsx
CHANGED
|
@@ -229,10 +229,9 @@ export default function REPL(): JSX.Element {
|
|
|
229
229
|
<Box flexDirection="column">
|
|
230
230
|
<Text color={getTheme().border}>{line.repeat(columns)}</Text>
|
|
231
231
|
|
|
232
|
-
{/* stable height container — prevents flicker on mount/unmount */}
|
|
233
232
|
<Box
|
|
234
233
|
key="input-area"
|
|
235
|
-
minHeight={pendingPermission ? 10 : pendingWizard ? 10 : 3}
|
|
234
|
+
// minHeight={pendingPermission ? 10 : pendingWizard ? 10 : 3}
|
|
236
235
|
>
|
|
237
236
|
{pendingPermission ? (
|
|
238
237
|
<PermissionCard
|