2
0

💚 Fix utils export issue

This commit is contained in:
Baptiste Arnaud
2023-02-10 16:55:20 +01:00
parent b98aef53fd
commit c175ade4d0
8 changed files with 13 additions and 8 deletions

View File

@ -8,7 +8,8 @@ import {
Typebot,
TypebotLinkBlock,
} from 'models'
import { isInputBlock, byId, parseResultHeader, isNotDefined } from 'utils'
import { isInputBlock, byId, isNotDefined } from 'utils'
import { parseResultHeader } from 'utils/results'
export const parseResultExample =
(

View File

@ -1,7 +1,7 @@
import { useToast } from '@/hooks/useToast'
import { ResultHeaderCell, ResultWithAnswers } from 'models'
import { createContext, ReactNode, useContext, useMemo } from 'react'
import { parseResultHeader } from 'utils'
import { parseResultHeader } from 'utils/results'
import { useTypebot } from '../editor/providers/TypebotProvider'
import { useResultsQuery } from './hooks/useResultsQuery'
import { TableData } from './types'