From f24041651cc3710416636056e8777cdf2a01dea2 Mon Sep 17 00:00:00 2001 From: Tilen Komel Date: Fri, 24 Jan 2025 00:03:55 +0100 Subject: [PATCH] Fix legacy import --- src/components/Dialog/NodeOptionsDialog.tsx | 2 +- src/components/Dialog/TracerouteResponseDialog.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Dialog/NodeOptionsDialog.tsx b/src/components/Dialog/NodeOptionsDialog.tsx index 9269f7f9..f2ea85e2 100644 --- a/src/components/Dialog/NodeOptionsDialog.tsx +++ b/src/components/Dialog/NodeOptionsDialog.tsx @@ -5,7 +5,7 @@ import { DialogContent, DialogHeader, DialogTitle, -} from "@components/UI/Dialog.js"; +} from "@components/UI/Dialog"; import type { Protobuf } from "@meshtastic/js"; import { numberToHexUnpadded } from "@noble/curves/abstract/utils"; import { Button } from "../UI/Button"; diff --git a/src/components/Dialog/TracerouteResponseDialog.tsx b/src/components/Dialog/TracerouteResponseDialog.tsx index f3b1502f..87ecf40e 100644 --- a/src/components/Dialog/TracerouteResponseDialog.tsx +++ b/src/components/Dialog/TracerouteResponseDialog.tsx @@ -5,7 +5,7 @@ import { DialogDescription, DialogHeader, DialogTitle, -} from "@components/UI/Dialog.js"; +} from "@components/UI/Dialog"; import type { Protobuf, Types } from "@meshtastic/js"; import { numberToHexUnpadded } from "@noble/curves/abstract/utils"; import { TraceRoute } from "../PageComponents/Messages/TraceRoute";