diff --git a/plugins/tech-radar/src/components/RadarBubble/RadarBubble.tsx b/plugins/tech-radar/src/components/RadarBubble/RadarBubble.tsx index 28890f984b..dcf9a37ed7 100644 --- a/plugins/tech-radar/src/components/RadarBubble/RadarBubble.tsx +++ b/plugins/tech-radar/src/components/RadarBubble/RadarBubble.tsx @@ -14,7 +14,7 @@ * limitations under the License. */ -import React, { FC, useRef, useEffect, useLayoutEffect } from 'react'; +import React, { FC, useRef, useLayoutEffect } from 'react'; import { makeStyles, Theme } from '@material-ui/core'; type Props = { @@ -88,10 +88,6 @@ const RadarBubble: FC = props => { } }; - useEffect(() => { - updatePosition(); - }, []); - useLayoutEffect(() => { updatePosition(); });