The weeb for the next gen discord boat - Wamellow wamellow.com
bot discord
3
fork

Configure Feed

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

fix: select menu clear button propagating (#32)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

authored by

Luna Seemann
Copilot
and committed by
GitHub
bbeefce6 31ed5fed

+8 -1
+8 -1
components/inputs/select-menu.tsx
··· 129 129 </div> 130 130 )} 131 131 {selectedItem?.name && showClear && ( 132 - <button onClick={handleClear} className="hover:text-neutral-300"> 132 + <button 133 + onClick={handleClear} 134 + onPointerDown={(e) => { 135 + e.preventDefault(); 136 + e.stopPropagation(); 137 + }} 138 + className="hover:text-neutral-300" 139 + > 133 140 <HiX /> 134 141 </button> 135 142 )}