update message search link to point to message (#225)

This commit is contained in:
Christina Tong
2025-12-16 11:07:17 -08:00
committed by GitHub
parent a0b3e2b098
commit 902c7c7110

View File

@@ -360,8 +360,16 @@ export function MessageSearch({ onClose }: MessageSearchProps) {
</Text>
{agentId && (
<>
<Text dimColor> · </Text>
<Link
url={`https://app.letta.com/projects/default-project/agents/${agentId}?searchTerm=${encodeURIComponent(activeQuery)}&messageId=${msgId}`}
>
<Text color={colors.link.text}>view message</Text>
</Link>
<Text dimColor> · agent: </Text>
<Link url={`https://app.letta.com/agents/${agentId}`}>
<Link
url={`https://app.letta.com/projects/default-project/agents/${agentId}`}
>
<Text color={colors.link.text}>{agentId}</Text>
</Link>
</>