Browse Source

PR fixes

pull/644/head
Dan Ditomaso 1 year ago
parent
commit
75dc676ab6
  1. 2
      src/components/PageComponents/Connect/BLE.tsx
  2. 2
      src/components/PageComponents/Messages/TraceRoute.test.tsx
  3. 3
      src/index.css

2
src/components/PageComponents/Connect/BLE.tsx

@ -7,7 +7,7 @@ import { subscribeAll } from "@core/subscriptions.ts";
import { randId } from "@core/utils/randId.ts";
import { TransportWebBluetooth } from "@meshtastic/transport-web-bluetooth";
import { MeshDevice } from "@meshtastic/core";
import { BluetoothDevice } from "web-bluetooth";
import type { BluetoothDevice } from "web-bluetooth";
import { useCallback, useEffect, useState } from "react";
import { useMessageStore } from "@core/stores/messageStore/index.ts";
import { useTranslation } from "react-i18next";

2
src/components/PageComponents/Messages/TraceRoute.test.tsx

@ -70,7 +70,7 @@ describe("TraceRoute", () => {
getNode: (nodeNum: number): Protobuf.Mesh.NodeInfo | undefined => {
return mockNodes.get(nodeNum);
},
} as any);
});
});
it("renders the route to destination with SNR values", () => {

3
src/index.css

@ -93,7 +93,6 @@ body {
}
@layer base {
*,
::after,
::before,
@ -139,4 +138,4 @@ img {
.animate-spin-slow {
animation: spin-slower 2s linear infinite;
}
}

Loading…
Cancel
Save