Skip to content

Commit

Permalink
chore(ui): fix typo (#3183)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamie-rasmussen authored Dec 9, 2024
1 parent 2351ecf commit 8d0f3f7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ const CallPageInnerVertical: FC<{

const {rowIdsConfigured} = useContext(TableRowSelectionContext);
const {isPeeking} = useContext(WeaveflowPeekContext);
const showPaginationContols = isPeeking && rowIdsConfigured;
const showPaginationControls = isPeeking && rowIdsConfigured;

const callTabs = useCallTabs(currentCall);

Expand All @@ -330,10 +330,10 @@ const CallPageInnerVertical: FC<{
justifyContent: 'space-between',
alignItems: 'center',
}}>
{showPaginationContols && (
{showPaginationControls && (
<PaginationControls call={call} path={path} />
)}
<Box sx={{marginLeft: showPaginationContols ? 0 : 'auto'}}>
<Box sx={{marginLeft: showPaginationControls ? 0 : 'auto'}}>
<Button
icon="layout-tabs"
tooltip={`${showTraceTree ? 'Hide' : 'Show'} trace tree`}
Expand Down

0 comments on commit 8d0f3f7

Please sign in to comment.