Skip to content

Commit dfc60b7

Browse files
committed
fix(jsx): escape literal '>' in JSX text to silence esbuild warnings
1 parent c64f16d commit dfc60b7

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/app/apps/CloudMusicPlayer/CloudMusicPlayer.jsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -429,11 +429,11 @@ const CloudMusicPlayer = () => {
429429

430430
{/* Footer Logs */}
431431
<div className="h-24 bg-black border border-cyan-900/30 p-2 font-mono text-[10px] text-cyan-800 overflow-hidden flex flex-col justify-end">
432-
<div className="opacity-50"> > SYSTEM_INIT... OK</div>
433-
<div className="opacity-60"> > AUDIO_DRIVER... LOADED</div>
434-
<div className="opacity-70"> > CONNECTING_TO_CLOUD_NODE... SUCCESS</div>
435-
<div className="text-cyan-600"> > LISTENING_ON_PORT_8080...</div>
436-
{isPlaying && <div className="text-cyan-400 animate-pulse"> > STREAMING_DATA_PACKETS...</div>}
432+
<div className="opacity-50"> &gt; SYSTEM_INIT... OK</div>
433+
<div className="opacity-60"> &gt; AUDIO_DRIVER... LOADED</div>
434+
<div className="opacity-70"> &gt; CONNECTING_TO_CLOUD_NODE... SUCCESS</div>
435+
<div className="text-cyan-600"> &gt; LISTENING_ON_PORT_8080...</div>
436+
{isPlaying && <div className="text-cyan-400 animate-pulse"> &gt; STREAMING_DATA_PACKETS...</div>}
437437
</div>
438438

439439
</div>

src/components/TheVagueTerminal.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ const TheVagueTerminal = ({ issues, onExit, onOpenIssue }) => {
390390

391391
{!isBooting && !activeProcess && (
392392
<div className="flex items-center gap-2 mt-2">
393-
<span>{cwd.join('/')}></span>
393+
<span>{cwd.join('/')}&gt;</span>
394394
<input
395395
ref={inputRef}
396396
type="text"

src/pages/apps/MarkdownTableFormatterPage.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ const MarkdownTableFormatterPage = () => {
161161
<BookOpenIcon weight="fill" />
162162
View Documentation / History
163163
</span>
164-
<span className="opacity-0 group-hover:opacity-100 transition-opacity">-></span>
164+
<span className="opacity-0 group-hover:opacity-100 transition-opacity">-&gt;</span>
165165
</button>
166166
</div>
167167
</div>

0 commit comments

Comments
 (0)