Remove uneeded coma

This commit is contained in:
Jackson Harper 2022-03-23 09:18:27 -07:00
parent a56314c21a
commit f92c4a3eef

View file

@ -71,7 +71,7 @@ export type DropdownAlignment =
type DropdownProps = {
labelText?: string
triggerElement: React.ReactNode
children: React.ReactNode,
children: React.ReactNode
styledArrow?: boolean
align?: DropdownAlignment
}