msyavuz commented on code in PR #36855:
URL: https://github.com/apache/superset/pull/36855#discussion_r2651192079
##########
superset-frontend/packages/superset-ui-core/src/components/Tabs/Tabs.tsx:
##########
@@ -161,8 +162,10 @@ export const StyledLineEditableTabs = styled(EditableTabs)`
}
`;
-export const LineEditableTabs = Object.assign(StyledLineEditableTabs, {
+export const LineEditableTabs: FC<TabsProps> & {
+ TabPane: typeof StyledTabPane;
+} = Object.assign(StyledLineEditableTabs, {
TabPane: StyledTabPane,
-});
+}) as FC<TabsProps> & { TabPane: typeof StyledTabPane };
Review Comment:
Is this necessary?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]