diff --git a/index.html b/index.html index ec60ae1..1fd0b2f 100644 --- a/index.html +++ b/index.html @@ -2443,8 +2443,10 @@ myColor = localStorage.getItem('userColor'); if (!myIcon || !myColor) { - // Show selector if no icon chosen yet - showIconSelector(); + // Show selector if no icon chosen yet - delay to ensure DOM is ready + setTimeout(() => { + showIconSelector(); + }, 100); } }