I need left tabs with two items with component Tabs (ant.design).
This component shows me "more element" and I don't now how hide it.

My code:
...
const tabItems = [
{label:'Tab 1',key:'1',children:'Content of Tab 1'},
{label:'Tab 2',key:'2',children:'Content of Tab 2'},
]
...
return (
...
<Tabs
tabPosition="left"
items={tabItems}
/>
...
)
When I use three or more items - it's works fine:

--- updated ---
I found crutch solution.
Add to component styles:
.ant-tabs-nav-operations {
display: none !important;
}
