Hide the WIP Styles UI behind support staff flag

That way, I can stop being on a branch and be working on main, and
deploy stuff to preview live, without having to share it with everyone
just yet! (This was the motivation for finally adding Support tooling
to main DTI lol!)
This commit is contained in:
Emi Matchu 2024-01-29 04:36:48 -08:00
parent 514c99fb42
commit 433a14104f

View file

@ -214,10 +214,12 @@ function PosePicker({
<StyleExplanation />
</TabPanel>
</TabPanels>
<TabList paddingX="2" paddingY="1">
<Tab width="50%">Expressions</Tab>
<Tab width="50%">Styles</Tab>
</TabList>
<SupportOnly>
<TabList paddingX="2" paddingY="1">
<Tab width="50%">Expressions</Tab>
<Tab width="50%">Styles</Tab>
</TabList>
</SupportOnly>
</Tabs>
<PopoverArrow />
</PopoverContent>
@ -664,8 +666,10 @@ function StyleExplanation() {
>
"Alt Styles" are special NC items that override the pet's usual appearance
via the "Styling Studio". The pet's color doesn't have to match.
<br />
WIP: The styles can't actually be applied yet!
<SupportOnly>
<br />
WIP: Only Support staff see this tab for now! 💖
</SupportOnly>
</Box>
);
}