Remove unused attribute

This commit is contained in:
Jackson Harper
2022-07-08 19:31:43 -07:00
parent 6dc707cc92
commit 56245619cf
3 changed files with 0 additions and 4 deletions

View File

@ -117,7 +117,6 @@ export type DropdownSide = 'top' | 'right' | 'bottom' | 'left'
type DropdownProps = {
labelText?: string
showArrow?: boolean
triggerElement: React.ReactNode
children: React.ReactNode
styledArrow?: boolean
@ -158,7 +157,6 @@ export function Dropdown(props: DropdownProps & PopperContentProps): JSX.Element
align,
triggerElement,
labelText,
showArrow = true,
disabled = false,
side = 'bottom',
sideOffset = 0,

View File

@ -204,7 +204,6 @@ export default function ExtensionsInstallHelp({
}}
>
<Dropdown
showArrow={false}
triggerElement={
<HStack
css={{

View File

@ -42,7 +42,6 @@ type ActionDropdownProps = {
const ActionDropdown = (props: ActionDropdownProps): JSX.Element => {
return <Dropdown
showArrow={false}
css={{ m: '0px', p: '0px', overflow: 'hidden', width: '265px', maxWidth: '265px', '@smDown': { width: '230px' } }}
side={props.layout == 'side' ? 'right' : 'bottom'}
sideOffset={props.layout == 'side' ? 8 : 0}