mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-08-29 20:21:50 +02:00
Fix sponsor opener
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
import { sponsorHidden } from '../../stores/page';
|
||||
|
||||
function showHideSponsor(isHidden) {
|
||||
function showHideSponsor(shouldHide) {
|
||||
const ad = document.querySelector('#sponsor-ad');
|
||||
if (!ad) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (isHidden) {
|
||||
if (shouldHide) {
|
||||
ad.classList.add('hidden');
|
||||
ad.classList.remove('flex');
|
||||
} else {
|
||||
|
@@ -84,7 +84,6 @@ export function TopicDetail() {
|
||||
// Close the topic detail when user clicks outside the topic detail
|
||||
useOutsideClick(topicRef, () => {
|
||||
setIsActive(false);
|
||||
sponsorHidden.set(false);
|
||||
});
|
||||
|
||||
useKeydown('Escape', () => {
|
||||
|
Reference in New Issue
Block a user