Fix build break

This commit is contained in:
Chen-I Lim 2020-11-03 11:15:16 -08:00
parent 74de574525
commit 0be3e36313
2 changed files with 2 additions and 2 deletions

View File

@ -14,6 +14,7 @@ import {Utils} from '../utils'
import MenuWrapper from '../widgets/menuWrapper'
import Menu from '../widgets/menu'
import PropertyMenu from '../widgets/propertyMenu'
import Editable from '../widgets/editable'
import Button from '../widgets/buttons/button'
import EmojiIcon from '../widgets/icons/emoji'
@ -21,7 +22,6 @@ import EmojiIcon from '../widgets/icons/emoji'
import {MarkdownEditor} from './markdownEditor'
import ContentBlock from './contentBlock'
import CommentsList from './commentsList'
import PropertyMenu from './propertyMenu'
import BlockIconSelector from './blockIconSelector'
import PropertyValueElement from './propertyValueElement'

View File

@ -14,7 +14,7 @@ type Props = {
propertyName: string
propertyType: PropertyType
onNameChanged: (newName: string) => void
onTypeChanged: (newType: string) => void
onTypeChanged: (newType: PropertyType) => void
onDelete: (id: string) => void
}