fix: patch flakey interrupt (#446)
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -130,7 +130,7 @@ export const InlineQuestionApproval = memo(
|
||||
});
|
||||
}
|
||||
// Always insert the space character
|
||||
setCustomText((prev) => prev + " ");
|
||||
setCustomText((prev) => `${prev} `);
|
||||
return;
|
||||
}
|
||||
if (key.escape) {
|
||||
|
||||
Reference in New Issue
Block a user