fix: round km in RouteSidebar
Some checks failed
TrafficCue CI / check (push) Failing after 1m1s
TrafficCue CI / build (push) Successful in 44s

This commit is contained in:
Cfp
2025-06-24 11:19:27 +02:00
parent aad5a5829d
commit a2a8255ebf

View File

@ -112,7 +112,7 @@
{#if i == 0} {#if i == 0}
<StarIcon /> <StarIcon />
{/if} {/if}
{route.summary.length}km - {formatTime(Math.round(route.summary.time))} {Math.round(route.summary.length)}km - {formatTime(Math.round(route.summary.time))}
</Button> </Button>
{/each} {/each}
</div> </div>