scroll and general position bug fixed

This commit is contained in:
anovazzi1 2023-06-12 22:08:16 -03:00
commit 513174fb3a

View file

@ -10,7 +10,7 @@ export default function FlowPage(){
setTabId(id);
}, [id])
return (
<div className="h-full w-full">
<div className="h-full w-full overflow-hidden">
{flows.length > 0 && tabId !== "" && flows.findIndex(flow => flow.id === tabId) !== -1 &&
<Page flow={flows.find(flow => flow.id === tabId)} />
}