EnxDev commented on code in PR #33090:
URL: https://github.com/apache/superset/pull/33090#discussion_r2054797494


##########
superset-frontend/src/features/alerts/buildErrorTooltipMessage.tsx:
##########
@@ -38,11 +34,16 @@ export const buildErrorTooltipMessage = (
   return (
     <div>
       {TRANSLATIONS.ERROR_TOOLTIP_MESSAGE}
-      <StyledList>
-        {sectionErrors.map(err => (
-          <li key={err}>{err}</li>
-        ))}
-      </StyledList>
+      <List
+        dataSource={sectionErrors}
+        renderItem={err => (
+          <List.Item>
+            <Typography.Text>• {err}</Typography.Text>

Review Comment:
   It should be modified—I had left it to do after refactoring List. Thanks!



-- 
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]

Reply via email to