How to load a Plasmic page design that isn't necessarily 100vh?

I’m loading in a region where I want Plasmic components and am running into an issue where the content is smaller than 100vh, which is the minimum height of plasmic_page_wrapper. Is there a recommended way to load in these components without out the page wrapper?

currently:

<PlasmicBanner that is maybe 200px>
.
.
.
.
empty space
<NonPlasmicRegion>

I’m refraining from doing something hacky as I’m sure there must be a way to do this properly

Is this just how Page Components work?

I’m starting to think maybe I just try and load in a non-page component?

that’s right; page components are for whole pages. If you’re just rendering a banner, you should use a non-page component

Great, haven’t tried those yet, but will soon if I see the need. Thanks!