refactor: Cleanup

This commit is contained in:
Aleksander Grygier 2025-11-23 23:28:28 +01:00
parent fb5445e9ce
commit 39fb1c2b17
2 changed files with 2 additions and 1 deletions

View File

@ -44,7 +44,7 @@
</Tooltip.Trigger>
<Tooltip.Content>
{onclick ? 'Click for model details' : 'Model name'}
{onclick ? 'Click for model details' : model}
</Tooltip.Content>
</Tooltip.Root>
{:else}

View File

@ -267,6 +267,7 @@
if (activeId) {
return options.find((option) => option.id === activeId);
}
return options[0];
}
</script>