diff --git a/src/components/layout/Sidebar.tsx b/src/components/layout/Sidebar.tsx
index 9104537..063633c 100644
--- a/src/components/layout/Sidebar.tsx
+++ b/src/components/layout/Sidebar.tsx
@@ -51,7 +51,7 @@ const Sidebar = ({
}
+ icon={}
onSelect={handleSidebarSelect}
disabled={disableSidebar}
onKeyDown={(e: any) => {
@@ -90,6 +90,20 @@ const Sidebar = ({
>
Favorites
+ }
+ onSelect={handleSidebarSelect}
+ disabled={disableSidebar}
+ onKeyDown={(e: any) => {
+ if (e.key === ' ' || e.key === 'Enter') {
+ history.push('/library/song');
+ }
+ }}
+ >
+ Songs
+