Skip to content

Commit 34b481e

Browse files
committed
chore: linter fix
1 parent 7d648b3 commit 34b481e

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

packages/blueprintjs-renderers/src/renderers.tsx

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,12 +166,17 @@ export const renderers: TreeRenderProps = {
166166
),
167167

168168
renderSearchInput: props => {
169-
const { ref, ...inputProps } = {...props.inputProps};
169+
const { ref, ...inputProps } = { ...props.inputProps };
170170
return (
171171
<div className={cx('rct-tree-search-input-container')}>
172-
<InputGroup intputRef={ref} {...(inputProps as any)} placeholder="Search..." />
172+
<InputGroup
173+
intputRef={ref}
174+
{...(inputProps as any)}
175+
placeholder="Search..."
176+
/>
173177
</div>
174-
)},
178+
);
179+
},
175180

176181
renderDepthOffset: 1,
177182
};

0 commit comments

Comments
 (0)