Profile: Fix rendering spinner after transition

This commit is contained in:
Alexander Zinchuk 2025-08-29 09:08:00 +02:00
parent 67d1495e41
commit 93b82b7f6a

View File

@ -586,7 +586,7 @@ const Profile: FC<OwnProps & StateProps> = ({
const isSpinner = noContent && !noSpinner;
return (
<Transition activeKey={isSpinner ? 0 : 1} name="fade">
<Transition activeKey={isSpinner ? 0 : 1} name="fade" shouldCleanup>
{renderSpinnerOrContent(noContent, noSpinner)}
</Transition>
);