-
-
-
{
data-testid={`${condition}-select`}
mode="multiple"
options={
- func.paramAdditionalContext?.data?.map((d) => ({
+ func.paramAdditionalContext?.data?.map((d: string) => ({
label: startCase(d),
value: d,
})) ?? []
diff --git a/openmetadata-ui/src/main/resources/ui/src/utils/LeftSidebarClassBase.ts b/openmetadata-ui/src/main/resources/ui/src/utils/LeftSidebarClassBase.ts
index ee40da29c95a..96f6c7dd9951 100644
--- a/openmetadata-ui/src/main/resources/ui/src/utils/LeftSidebarClassBase.ts
+++ b/openmetadata-ui/src/main/resources/ui/src/utils/LeftSidebarClassBase.ts
@@ -10,17 +10,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-import { FC } from 'react';
import { SIDEBAR_LIST } from '../constants/LeftSidebar.constants';
class LeftSidebarClassBase {
- /**
- * getSidebarElements
- */
- public getSidebarElements(): FC | null {
- return null;
- }
-
/**
* getSidebarItems
*/