fix(mesh): enforce LoRa-only off-grid labels

This commit is contained in:
archipelago
2026-06-30 06:22:45 -04:00
parent 2ac0711f8e
commit b4531bb4fc
4 changed files with 24 additions and 6 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ import { defineStore } from 'pinia'
import { ref, computed } from 'vue'
import { rpcClient } from '@/api/rpc-client'
export type TransportKind = 'mesh' | 'lan' | 'tor'
export type TransportKind = 'mesh' | 'lan' | 'fips' | 'tor'
export interface TransportInfo {
kind: TransportKind