Skip to content

Commit 58ba832

Browse files
committed
fix: sidebar active
1 parent e5b6b09 commit 58ba832

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/Sidebar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const Sidebar = ({ isOpen, toggleSidebar, toggleModal, setIsPaletteOpen }) => {
7979
location.pathname.startsWith('/logs') ||
8080
location.pathname.startsWith('/stories');
8181

82-
const isAppsActive = location.pathname.startsWith('/apps');
82+
const isAppsActive = location.pathname.startsWith('/apps') || location.pathname.startsWith('/commands');
8383

8484
const variants = {
8585
open: { x: 0 },

src/pages/CommandsPage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ function CommandsPage() {
200200

201201
<div className="bg-lime-900 bg-opacity-30 border border-lime-700 text-lime-300 px-4 py-3 rounded relative mb-6" role="alert">
202202
<strong className="font-bold">Her Daim:</strong>
203-
<span className="block sm:inline ml-2"> Show image of `Devir Abi`. </span>
203+
<span className="block sm:inline ml-2"> Her Daim... </span>
204204
</div>
205205

206206
</div>

0 commit comments

Comments
 (0)