fix js lints

This commit is contained in:
Markus Unterwaditzer
2026-05-15 22:21:03 +02:00
committed by Will Greenberg
parent 19df99d663
commit 2ada840919
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ export enum GpsMode {
Api = 2,
}
export function gpsModeLabel(mode: GpsMode | undefined | null): string {
export function gps_mode_label(mode: GpsMode | undefined | null): string {
switch (mode) {
case GpsMode.Fixed:
return 'Fixed coordinates';