fix catalog popups timeout

This commit is contained in:
plebeius.eth
2023-09-05 15:14:52 +02:00
parent 9fd07c9ce7
commit 10a1b973de
3 changed files with 8 additions and 8 deletions
@@ -114,7 +114,7 @@ const CatalogPost = ({post}) => {
};
if (isHoveringOnThread) {
const timeoutId = setTimeout(executeLayoutEffectLogic, 500);
const timeoutId = setTimeout(executeLayoutEffectLogic, 250);
return () => clearTimeout(timeoutId);
}