From adf0d2766d77c16ed5e682101e031fa1376713aa Mon Sep 17 00:00:00 2001 From: Ronnie Date: Wed, 20 Nov 2024 19:36:46 -0500 Subject: [PATCH] no-unescaped-entities --- src/components/Terminal.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/components/Terminal.tsx b/src/components/Terminal.tsx index 6171c76..d3161c1 100644 --- a/src/components/Terminal.tsx +++ b/src/components/Terminal.tsx @@ -152,7 +152,7 @@ const Terminal: React.FC = () => { } }; - const handleClick = (e: React.MouseEvent) => { + const handleClick = () => { const selection = window.getSelection(); if (selection && selection.toString()) { return; @@ -206,19 +206,19 @@ const MOTD = () => ( {`\n |_| \\_\\___/|_| |_|_| |_|_|_|\\___(_)__,_|\\___| \\_/ `}
- Welcome to Ronnie's Development Terminal! + Welcome to Ronnie's Development Terminal!
🎩 ABOUT THE DEV

- Hi! I'm Ronnie—a developer passionate about blending code and design. + Hi! I'm Ronnie—a developer passionate about blending code and design.

This site is my playground for testing and crafting innovative projects.

- When I'm not tinkering here, I'm programming for NullDaily LLC, building + When I'm not tinkering here, I'm programming for NullDaily LLC, building open-source tools to empower creators and developers.

@@ -305,14 +305,14 @@ const MOTD = () => (

- 🌟 "Code, automate, and create with purpose. This isn't just development; - it's an adventure." 🌟 + 🌟 "Code, automate, and create with purpose. This isn't just development; + it's an adventure." 🌟

- Type 'help' to see what you can do. Let’s explore together! + Type 'help' to see what you can do. Let’s explore together!
);