(analytics) Improve analytics graph accuracy

This commit is contained in:
Baptiste Arnaud
2023-06-30 12:13:17 +02:00
parent 55ff944ebb
commit b0f25f301b
28 changed files with 512 additions and 157 deletions

View File

@@ -57,12 +57,18 @@ export const ResultsPage = () => {
/>
<TypebotHeader />
{workspace && <UsageAlertBanners workspace={workspace} />}
<Flex h="full" w="full">
<Flex
h="full"
w="full"
bgColor={useColorModeValue(
router.pathname.endsWith('analytics') ? '#f4f5f8' : 'white',
router.pathname.endsWith('analytics') ? 'gray.850' : 'gray.900'
)}
>
<Flex
pos="absolute"
zIndex={2}
w="full"
bg={useColorModeValue('white', 'gray.900')}
justifyContent="center"
h="60px"
display={['none', 'flex']}