We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d6fc01b + 11b53f5 commit 15611e3Copy full SHA for 15611e3
src/components/FloatingContributors/index.tsx
@@ -182,14 +182,6 @@ const FloatingContributors: React.FC<FloatingContributorsProps> = ({ headerEmbed
182
return () => clearInterval(interval);
183
}, [activities.length]);
184
185
- // Auto-hide after some time
186
- useEffect(() => {
187
- const timer = setTimeout(() => {
188
- setIsVisible(false);
189
- }, 30000); // Hide after 30 seconds
190
-
191
- return () => clearTimeout(timer);
192
- }, []);
193
194
const generateRandomTimeAgo = (): string => {
195
const timeOptions = [
0 commit comments