Remove unused attribute
This commit is contained in:
@ -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,
|
||||
|
||||
@ -204,7 +204,6 @@ export default function ExtensionsInstallHelp({
|
||||
}}
|
||||
>
|
||||
<Dropdown
|
||||
showArrow={false}
|
||||
triggerElement={
|
||||
<HStack
|
||||
css={{
|
||||
|
||||
@ -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}
|
||||
|
||||
Reference in New Issue
Block a user