fix: patch flakey interrupt (#446)

This commit is contained in:
Charles Packer
2026-01-01 21:33:49 -08:00
committed by GitHub
parent 397560ef00
commit 4d9fea64ee
3 changed files with 26 additions and 18 deletions

View File

@@ -54,20 +54,16 @@ export const AgentInfoBar = memo(function AgentInfoBar({
</Box>
<Box>
{isCloudUser && (
<>
<Link url={`https://app.letta.com/agents/${agentId}`}>
<Text>Open in ADE </Text>
</Link>
</>
<Link url={`https://app.letta.com/agents/${agentId}`}>
<Text>Open in ADE </Text>
</Link>
)}
</Box>
<Box>
{isCloudUser && (
<>
<Link url="https://app.letta.com/settings/organization/usage">
<Text>View usage </Text>
</Link>
</>
<Link url="https://app.letta.com/settings/organization/usage">
<Text>View usage </Text>
</Link>
)}
{!isCloudUser && <Text dimColor> · {serverUrl}</Text>}
</Box>

View File

@@ -130,7 +130,7 @@ export const InlineQuestionApproval = memo(
});
}
// Always insert the space character
setCustomText((prev) => prev + " ");
setCustomText((prev) => `${prev} `);
return;
}
if (key.escape) {