{device ? (
-
+
diff --git a/src/components/PageLayout.tsx b/src/components/PageLayout.tsx
index 2472e674..4ad4857a 100644
--- a/src/components/PageLayout.tsx
+++ b/src/components/PageLayout.tsx
@@ -40,8 +40,12 @@ export const PageLayout = ({
- {/* relative flex h-full w-full flex-col */}
-
diff --git a/src/components/UI/ScrollArea.tsx b/src/components/UI/ScrollArea.tsx
new file mode 100644
index 00000000..c49c7ccc
--- /dev/null
+++ b/src/components/UI/ScrollArea.tsx
@@ -0,0 +1,46 @@
+import * as React from "react";
+import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area";
+
+import { cn } from "@core/utils/cn.js";
+
+const ScrollArea = React.forwardRef<
+ React.ElementRef
,
+ React.ComponentPropsWithoutRef
+>(({ className, children, ...props }, ref) => (
+
+
+ {children}
+
+
+
+
+));
+ScrollArea.displayName = ScrollAreaPrimitive.Root.displayName;
+
+const ScrollBar = React.forwardRef<
+ React.ElementRef,
+ React.ComponentPropsWithoutRef
+>(({ className, orientation = "vertical", ...props }, ref) => (
+
+
+
+));
+ScrollBar.displayName = ScrollAreaPrimitive.ScrollAreaScrollbar.displayName;
+
+export { ScrollArea, ScrollBar };
diff --git a/src/components/UI/Select.tsx b/src/components/UI/Select.tsx
index 01a46552..8ca354b9 100644
--- a/src/components/UI/Select.tsx
+++ b/src/components/UI/Select.tsx
@@ -17,7 +17,7 @@ const SelectTrigger = React.forwardRef<
(({ className, ...props }, ref) => (
));
diff --git a/src/pages/Channels.tsx b/src/pages/Channels.tsx
index 446b6a6d..0fc910e0 100644
--- a/src/pages/Channels.tsx
+++ b/src/pages/Channels.tsx
@@ -40,8 +40,6 @@ export const ChannelsPage = (): JSX.Element => {
{
icon: ImportIcon,
onClick() {
- console.log("fired");
-
setDialogOpen("import", true);
}
},
diff --git a/src/pages/Peers.tsx b/src/pages/Peers.tsx
index 46c93c05..8d1f2878 100644
--- a/src/pages/Peers.tsx
+++ b/src/pages/Peers.tsx
@@ -31,7 +31,7 @@ export const PeersPage = (): JSX.Element => {
,
{node.user?.longName ?? node.user?.macaddr
- ? `Meshtastic_${base16
+ ? `Meshtastic ${base16
.stringify(node.user?.macaddr.subarray(4, 6) ?? [])
.toLowerCase()}`
: `UNK: ${node.num}`}