🔥 Remove disable response saving option
Doesn't work properly when it comes to keep tracking storage usage
This commit is contained in:
@@ -54,7 +54,7 @@ export const Graph = ({
|
||||
} = useGraph()
|
||||
const { updateGroupCoordinates } = useGroupsCoordinates()
|
||||
const [graphPosition, setGraphPosition] = useState(
|
||||
graphPositionDefaultValue(typebot.groups[0].graphCoordinates)
|
||||
graphPositionDefaultValue(typebot.groups[0]?.graphCoordinates)
|
||||
)
|
||||
const [debouncedGraphPosition] = useDebounce(graphPosition, 200)
|
||||
const transform = useMemo(
|
||||
|
||||
@@ -40,7 +40,7 @@ export const ItemNodesList = ({
|
||||
|
||||
const isLastBlock =
|
||||
isDefined(typebot) &&
|
||||
typebot.groups[groupIndex].blocks[blockIndex + 1] === undefined
|
||||
typebot.groups[groupIndex]?.blocks?.[blockIndex + 1] === undefined
|
||||
|
||||
const [position, setPosition] = useState({
|
||||
x: 0,
|
||||
|
||||
Reference in New Issue
Block a user