Skip to content

Commit 1af0357

Browse files
priscilawebdevClaude Opus 4.6
andcommitted
fix(layout): use LayoutPageWithHiddenFooter in differential flamegraph
Same fix as profile summary — move footer-hiding CSS from the inner container to the Layout.Page wrapper so the sibling selector still matches the footer element. Co-Authored-By: Claude Opus 4.6 <noreply@example.com>
1 parent d81284e commit 1af0357

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

static/app/views/profiling/differentialFlamegraph.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,15 +349,17 @@ const DifferentialFlamegraphContainer = styled('div')`
349349
display: flex;
350350
flex-direction: column;
351351
flex: 1;
352+
`;
352353

354+
const LayoutPageWithHiddenFooter = styled(Layout.Page)`
353355
~ footer {
354356
display: none;
355357
}
356358
`;
357359

358360
function DifferentialFlamegraphWithProviders() {
359361
return (
360-
<Layout.Page>
362+
<LayoutPageWithHiddenFooter>
361363
<FlamegraphThemeProvider>
362364
<FlamegraphStateProvider
363365
initialState={{
@@ -370,7 +372,7 @@ function DifferentialFlamegraphWithProviders() {
370372
<DifferentialFlamegraphView />
371373
</FlamegraphStateProvider>
372374
</FlamegraphThemeProvider>
373-
</Layout.Page>
375+
</LayoutPageWithHiddenFooter>
374376
);
375377
}
376378

0 commit comments

Comments
 (0)