From 459f7167733b7ed2c79d52b7ccdfb3cfcf467be9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= <joamag@gmail.com>
Date: Fri, 21 Apr 2023 09:47:42 +0100
Subject: [PATCH] fix: tiny map fix

---
 .../web/react/components/serial-section/serial-section.tsx  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/frontends/web/react/components/serial-section/serial-section.tsx b/frontends/web/react/components/serial-section/serial-section.tsx
index b96eda79..03d2ffb5 100644
--- a/frontends/web/react/components/serial-section/serial-section.tsx
+++ b/frontends/web/react/components/serial-section/serial-section.tsx
@@ -5,9 +5,9 @@ import { GameboyEmulator, SerialDevice, bufferToDataUrl } from "../../../ts";
 import "./serial-section.css";
 
 const DEVICE_ICON: { [key: string]: string } = {
-    Null: "🛑",
-    Logger: "📜",
-    Printer: "🖨️"
+    null: "🛑",
+    logger: "📜",
+    printer: "🖨️"
 };
 
 type SerialSectionProps = {
-- 
GitLab