2
0

build: 📦️ Update packages

This commit is contained in:
Baptiste Arnaud
2022-05-13 09:18:25 -07:00
parent ddaaa68e28
commit 6c2986590b
32 changed files with 2994 additions and 3689 deletions

View File

@@ -1,6 +1,6 @@
import { Flex, FlexProps } from '@chakra-ui/react'
import { Item } from 'models'
import React from 'react'
import React, { ReactNode } from 'react'
type Props = {
item: Item
@@ -20,7 +20,7 @@ export const ItemNodeOverlay = ({ item, ...props }: Props) => {
shadow="lg"
{...props}
>
{item.content ?? 'Click to edit'}
{(item.content ?? 'Click to edit') as ReactNode}
</Flex>
)
}