this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

More queueMicrotask

+7 -5
+7 -5
src/app.jsx
··· 124 124 // Related: https://github.com/vitejs/vite/issues/10600 125 125 setTimeout(() => { 126 126 for (const icon in ICONS) { 127 - if (Array.isArray(ICONS[icon])) { 128 - ICONS[icon][0]?.(); 129 - } else { 130 - ICONS[icon]?.(); 131 - } 127 + queueMicrotask(() => { 128 + if (Array.isArray(ICONS[icon])) { 129 + ICONS[icon][0]?.(); 130 + } else { 131 + ICONS[icon]?.(); 132 + } 133 + }); 132 134 } 133 135 }, 5000); 134 136