mirror of
https://github.com/abusoww/tuxmate.git
synced 2026-04-17 15:53:24 +02:00
fix: remove analytics call from DistroSelector
This commit is contained in:
@@ -78,7 +78,7 @@ export function DistroSelector({
|
||||
{distros.map((distro, i) => (
|
||||
<button
|
||||
key={distro.id}
|
||||
onClick={() => { onSelect(distro.id); setIsOpen(false); analytics.distroSelected(distro.name); }}
|
||||
onClick={() => { onSelect(distro.id); setIsOpen(false); }}
|
||||
className={`group w-full flex items-center gap-3 py-3 px-4 cursor-pointer text-left transition-colors duration-100 ${selectedDistro === distro.id
|
||||
? 'border-l-2 -ml-[2px] pl-[18px]'
|
||||
: 'hover:bg-[var(--bg-hover)]'
|
||||
|
||||
Reference in New Issue
Block a user