diff --git a/bun.lock b/bun.lock index 0732f678..ea30a8d3 100644 --- a/bun.lock +++ b/bun.lock @@ -5,6 +5,7 @@ "name": "meshtastic-web", "dependencies": { "@bufbuild/protobuf": "^2.6.1", + "@meshtastic/protobufs": "npm:@jsr/meshtastic__protobufs", "ste-simple-events": "^3.0.11", "tslog": "^4.9.3", }, @@ -18,7 +19,6 @@ "name": "@meshtastic/core", "version": "2.6.5", "dependencies": { - "@meshtastic/protobufs": "npm:@jsr/meshtastic__protobufs", "crc": "npm:crc@^4.3.2", }, }, @@ -28,7 +28,7 @@ }, "packages/transport-http": { "name": "@meshtastic/transport-http", - "version": "0.2.1", + "version": "0.2.2", }, "packages/transport-node": { "name": "@meshtastic/transport-node", @@ -36,14 +36,14 @@ }, "packages/transport-web-bluetooth": { "name": "@meshtastic/transport-web-bluetooth", - "version": "0.1.2", + "version": "0.1.3", "devDependencies": { "@types/web-bluetooth": "npm:@types/web-bluetooth@^0.0.20", }, }, "packages/transport-web-serial": { "name": "@meshtastic/transport-web-serial", - "version": "0.2.1", + "version": "0.2.2", "dependencies": { "@types/w3c-web-serial": "npm:@types/w3c-web-serial@^1.0.7", }, diff --git a/packages/web/src/components/UI/Footer.tsx b/packages/web/src/components/UI/Footer.tsx index b98f940b..552e6c49 100644 --- a/packages/web/src/components/UI/Footer.tsx +++ b/packages/web/src/components/UI/Footer.tsx @@ -1,13 +1,11 @@ import { cn } from "@core/utils/cn.ts"; -import { Trans, useTranslation } from "react-i18next"; +import { Trans } from "react-i18next"; type FooterProps = { className?: string; }; const Footer = ({ className, ...props }: FooterProps) => { - const { t } = useTranslation(); - return (