diff --git a/theatre/studio/src/toolbars/GlobalToolbar.tsx b/theatre/studio/src/toolbars/GlobalToolbar.tsx index 7c23b8b..7ba777e 100644 --- a/theatre/studio/src/toolbars/GlobalToolbar.tsx +++ b/theatre/studio/src/toolbars/GlobalToolbar.tsx @@ -135,13 +135,15 @@ const GlobalToolbar: React.FC = () => { const moreMenuTriggerRef = useRef(null) const showUpdatesBadge = useMemo(() => { - if (hasUpdates || window.__IS_VISUAL_REGRESSION_TESTING) { + if (window.__IS_VISUAL_REGRESSION_TESTING) { if (!showedVisualTestingWarning) { showedVisualTestingWarning = true console.warn( "Visual regression testing enabled, so we're showing the updates badge unconditionally", ) } + } + if (hasUpdates || window.__IS_VISUAL_REGRESSION_TESTING) { return true }