2
0

feat(dashboard): 💅 Show when the bot is published

This commit is contained in:
Baptiste Arnaud
2022-02-15 07:09:33 +01:00
parent 2eee226a88
commit 8583e2a1ba
3 changed files with 12 additions and 17 deletions

View File

@ -1,11 +1,4 @@
import {
Block,
InputStep,
PublicBlock,
PublicStep,
PublicTypebot,
Typebot,
} from 'models'
import { Block, PublicBlock, PublicStep, PublicTypebot, Typebot } from 'models'
import shortId from 'short-uuid'
import { HStack, Text } from '@chakra-ui/react'
import { CalendarIcon } from 'assets/icons'
@ -38,9 +31,7 @@ const parseBlocksToPublicBlocks = (blocks: Block[]): PublicBlock[] =>
),
}))
export const createPublishedTypebot = async (
typebot: Omit<PublicTypebot, 'id'>
) =>
export const createPublishedTypebot = async (typebot: PublicTypebot) =>
sendRequest<PublicTypebot>({
url: `/api/publicTypebots`,
method: 'POST',