+
{state.logs
.filter((log) => {
return ![
diff --git a/src/components/generic/Sidebar/CollapsibleSection.tsx b/src/components/generic/Sidebar/CollapsibleSection.tsx
index 0020f8b3..ff44b77c 100644
--- a/src/components/generic/Sidebar/CollapsibleSection.tsx
+++ b/src/components/generic/Sidebar/CollapsibleSection.tsx
@@ -6,14 +6,12 @@ import { FiArrowUp } from 'react-icons/fi';
export interface CollapsibleSectionProps {
title: string;
icon?: JSX.Element;
- actions?: JSX.Element;
children: JSX.Element;
}
export const CollapsibleSection = ({
title,
icon,
- actions,
children,
}: CollapsibleSectionProps): JSX.Element => {
const [open, setOpen] = React.useState(false);
@@ -22,14 +20,14 @@ export const CollapsibleSection = ({
{icon}
@@ -42,6 +40,7 @@ export const CollapsibleSection = ({
open: { rotate: 0 },
closed: { rotate: 180 },
}}
+ transition={{ type: 'just' }}
className="my-auto"
>
@@ -50,22 +49,15 @@ export const CollapsibleSection = ({
{open && (
- <>
- {actions && (
-
- {actions}
-
- )}
-
- {children}
-
- >
+
+ {children}
+
)}
diff --git a/src/components/layout/Sidebar/Settings/channels/ChannelsGroup.tsx b/src/components/layout/Sidebar/Settings/channels/ChannelsGroup.tsx
index aaeaba7e..f8cd9c8a 100644
--- a/src/components/layout/Sidebar/Settings/channels/ChannelsGroup.tsx
+++ b/src/components/layout/Sidebar/Settings/channels/ChannelsGroup.tsx
@@ -1,9 +1,5 @@
import type React from 'react';
-import { FaQrcode } from 'react-icons/fa';
-import { FiCode, FiSave } from 'react-icons/fi';
-
-import { IconButton } from '@components/generic/button/IconButton';
import { CollapsibleSection } from '@components/generic/Sidebar/CollapsibleSection';
import { SettingsPanel } from '@components/layout/Sidebar/Settings/channels/Channels';
import { useAppSelector } from '@hooks/useAppSelector';
@@ -36,19 +32,8 @@ export const ChannelsGroup = (): JSX.Element => {
}`}
/>
}
- actions={
- <>
- } />
- } />
- } />
- >
- }
>
- <>
- {/* */}
- {/* */}
-
- >
+
);
diff --git a/src/components/menu/BottomNav.tsx b/src/components/menu/BottomNav.tsx
index b87662e1..9dc72321 100644
--- a/src/components/menu/BottomNav.tsx
+++ b/src/components/menu/BottomNav.tsx
@@ -66,7 +66,7 @@ export const BottomNav = (): JSX.Element => {
Types.DeviceStatusEnum.DEVICE_CONFIGURING,
].includes(meshtasticState.deviceStatus)
? 'bg-yellow-400 dark:bg-yellow-400'
- : 'bg-gray-400 dark:bg-secondaryDark dark:text-white'
+ : ''
}
>
{appState.connType === connType.BLE ? (