Skip to content

Commit

Permalink
fix: fix windows icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Sherlockouo committed Dec 14, 2023
1 parent 7e43cba commit e911044
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
File renamed without changes
4 changes: 2 additions & 2 deletions packages/web/components/BlurBackground.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ const BlurBackground = ({ className }: { className: string }) => {
}, [blurBackgroundImage])

useEffect(() => {
if (!isMobile && blurBackgroundImage && hideTopbarBackground && isLoaded) {
if (!isMobile && blurBackgroundImage && isLoaded) {
animate.start({ opacity: 1 })
} else {
animate.start({ opacity: 0 })
}
}, [animate, blurBackgroundImage, hideTopbarBackground, isLoaded, isMobile])
}, [animate, blurBackgroundImage, isLoaded, isMobile])

return (
<AnimatePresence>
Expand Down

0 comments on commit e911044

Please sign in to comment.