add detail stream selector to mobile drawer

This commit is contained in:
Josh Hawkins 2025-10-23 21:47:24 -05:00
parent e2da8aa04c
commit 6e765738ce

View File

@ -51,6 +51,15 @@ export default function MobileTimelineDrawer({
>
{t("events.label")}
</div>
<div
className={`mx-4 w-full py-2 text-center smart-capitalize ${selected == "detail" ? "rounded-lg bg-secondary" : ""}`}
onClick={() => {
onSelect("detail");
setDrawer(false);
}}
>
{t("detail.label")}
</div>
</DrawerContent>
</Drawer>
);