Add preloading of ad image

pull/7791/head
Kamran Ahmed 3 months ago
parent d445c026d8
commit 4c5e95a117
  1. 4
      src/components/PageSponsors/StickyTopSponsor.tsx

@ -28,6 +28,10 @@ export function StickyTopSponsor(props: StickyTopSponsorProps) {
return;
}
// preload the image so that we don't see a flicker
const img = new Image();
img.src = sponsor.imageUrl;
// hide the onboarding strip when the sponsor is visible
isOnboardingStripHidden.set(true);
}, [sponsor]);

Loading…
Cancel
Save