Skip to content

Commit b32e306

Browse files
committed
minor: bug fix
description: Fix exit button functionality and update version numbers ---
1 parent fedd9b5 commit b32e306

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

frontend/src/App.jsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -990,11 +990,11 @@ function App() {
990990
/>
991991

992992
{/* Exit Button */}
993-
<button onClick={handleExit} className="btn-exit" aria-label="Exit Application" title="Exit Application">
993+
<button onClick={handleExit} className="btn-exit" aria-label="Kill Backend" title="Kill Backend">
994994
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
995-
<path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" />
996-
<polyline points="16,17 21,12 16,7" />
997-
<line x1="21" y1="12" x2="9" y2="12" />
995+
<circle cx="12" cy="12" r="10"></circle>
996+
<line x1="15" y1="9" x2="9" y2="15"></line>
997+
<line x1="9" y1="9" x2="15" y2="15"></line>
998998
</svg>
999999
</button>
10001000

0 commit comments

Comments
 (0)