zqran
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
beta/src/components/SocialBanner.tsx
|
|
@ -18,7 +18,7 @@ export default function SocialBanner() { |
|
|
|
if (y === 0) { |
|
|
|
// We're trying to reset scroll.
|
|
|
|
// If we already scrolled past the banner, consider it as y = 0.
|
|
|
|
const bannerHeight = ref.current!.offsetHeight; // Could be zero (e.g. mobile)
|
|
|
|
const bannerHeight = ref.current?.offsetHeight ?? 0; // Could be zero (e.g. mobile)
|
|
|
|
y = Math.min(window.scrollY, bannerHeight); |
|
|
|
} |
|
|
|
return realScrollTo(x, y); |
|
|
|