diff --git a/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/MyChart.erb b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/MyChart.erb index 63e400b3746f8..1b9a2b4a9df38 100644 --- a/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/MyChart.erb +++ b/superset-frontend/packages/generator-superset/generators/plugin-chart/templates/src/MyChart.erb @@ -64,7 +64,7 @@ export default function <%= packageLabel %>(props: <%= packageLabel %>Props) { const rootElem = createRef(); - // Often, you just want to get a hold of the DOM and go nuts. + // Often, you just want to access the DOM and do whatever you want. // Here, you can do that with createRef, and the useEffect hook. useEffect(() => { const root = rootElem.current as HTMLElement;