@@ -16,6 +16,7 @@ import { SpinnerOverlay } from 'lib/lemon-ui/Spinner/Spinner'
1616import { Tooltip } from 'lib/lemon-ui/Tooltip'
1717import { featureFlagLogic } from 'lib/logic/featureFlagLogic'
1818import { copyToClipboard } from 'lib/utils/copyToClipboard'
19+ import { cn } from 'lib/utils/css-classes'
1920import { openInAdminPanel } from 'lib/utils/person-actions'
2021import { ProductIntentContext } from 'lib/utils/product-intents'
2122import { RelatedGroups } from 'scenes/groups/RelatedGroups'
@@ -137,7 +138,7 @@ export function PersonScene(): JSX.Element | null {
137138 const settingLevel = featureFlags [ FEATURE_FLAGS . ENVIRONMENTS ] ? 'environment' : 'project'
138139
139140 return (
140- < SceneContent >
141+ < SceneContent fullHeight >
141142 < SceneTitleSection
142143 name = "Person"
143144 resourceType = { {
@@ -197,6 +198,10 @@ export function PersonScene(): JSX.Element | null {
197198 navigateToTab ( tab as PersonsTabType )
198199 } }
199200 data-attr = "persons-tabs"
201+ className = "grow"
202+ contentClassName = { cn ( {
203+ 'flex flex-col grow' : currentTab === PersonsTabType . SESSION_RECORDINGS ,
204+ } ) }
200205 tabs = { [
201206 feedEnabled
202207 ? {
@@ -252,14 +257,12 @@ export function PersonScene(): JSX.Element | null {
252257 </ LemonBanner >
253258 </ div >
254259 ) : null }
255- < div className = "SessionRecordingPlaylistHeightWrapper" >
256- < SessionRecordingsPlaylist
257- logicKey = { `person-scene-${ person . uuid } ` }
258- personUUID = { person . uuid }
259- distinctIds = { person . distinct_ids }
260- updateSearchParams
261- />
262- </ div >
260+ < SessionRecordingsPlaylist
261+ logicKey = { `person-scene-${ person . uuid } ` }
262+ personUUID = { person . uuid }
263+ distinctIds = { person . distinct_ids }
264+ updateSearchParams
265+ />
263266 </ >
264267 ) ,
265268 } ,
0 commit comments