fix: remove extra vertical spacing between memory block tabs (#749)

Co-authored-by: Letta <noreply@letta.com>
This commit is contained in:
Charles Packer
2026-01-29 20:23:51 -08:00
committed by GitHub
parent 382a7d34f5
commit 2f1943f41d
4 changed files with 592 additions and 23 deletions

View File

@@ -123,9 +123,9 @@ export function MemoryTabViewer({
}
});
// Render tab bar
// Render tab bar (no gap - spacing is handled by padding in each label)
const renderTabBar = () => (
<Box flexDirection="row" gap={1} flexWrap="wrap">
<Box flexDirection="row" flexWrap="wrap">
{displayBlocks.map((block, index) => {
const isActive = index === selectedTabIndex;
return (