mirror of
https://github.com/meshtastic/web.git
synced 2026-05-24 06:05:06 -04:00
Fix Build & cleanup
This commit is contained in:
@@ -2,14 +2,11 @@ import React from 'react';
|
||||
|
||||
import { FiCheck } from 'react-icons/fi';
|
||||
|
||||
import { useAppDispatch } from '@app/hooks/redux';
|
||||
import { IconButton } from '@components/generic/IconButton';
|
||||
import { serial, setConnection } from '@core/connection';
|
||||
import { connType } from '@core/slices/appSlice';
|
||||
|
||||
export const Serial = (): JSX.Element => {
|
||||
const dispatch = useAppDispatch();
|
||||
|
||||
const [serialDevices, setSerialDevices] = React.useState<SerialPort[]>([]);
|
||||
|
||||
const updateSerialDeviceList = React.useCallback(async (): Promise<void> => {
|
||||
|
||||
@@ -11,7 +11,6 @@ export const DeviceStatus = (): JSX.Element => {
|
||||
const dispatch = useAppDispatch();
|
||||
const appState = useAppSelector((state) => state.app);
|
||||
const state = useAppSelector((state) => state.meshtastic);
|
||||
const ready = useAppSelector((state) => state.meshtastic.ready);
|
||||
|
||||
return (
|
||||
<Button
|
||||
|
||||
@@ -10,11 +10,6 @@ export interface MessageWithAck {
|
||||
isSender: boolean;
|
||||
received: Date;
|
||||
}
|
||||
enum connType {
|
||||
HTTP,
|
||||
BLE,
|
||||
SERIAL,
|
||||
}
|
||||
|
||||
export interface ChannelData {
|
||||
channel: Protobuf.Channel;
|
||||
|
||||
@@ -140,10 +140,10 @@ export const Channels = ({
|
||||
|
||||
console.log(adminChannel);
|
||||
|
||||
// await connection.setChannel(adminChannel, (): Promise<void> => {
|
||||
// setLoading(false);
|
||||
// return Promise.resolve();
|
||||
// });
|
||||
await connection.setChannel(adminChannel, (): Promise<void> => {
|
||||
setLoading(false);
|
||||
return Promise.resolve();
|
||||
});
|
||||
});
|
||||
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user