File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1493,23 +1493,19 @@ function NavBar({ layoutref }: NavBarProps) {
14931493 { isMoreMenuOpen && (
14941494 < div className = "absolute right-0 top-11 z-[100] mx-auto flex w-48 flex-col bg-curious-blue-700 py-3 shadow-md transition-all dark:bg-mountain-mist-950 dark:group-hover:bg-mountain-mist-950" >
14951495 < ul id = "pythonId" className = "flex cursor-pointer flex-col" >
1496- { moreMenu . map (
1497- ( item , ci ) =>
1498- // hide ai chat menu item in production
1499- item . label !== t ( 'ai-chat' ) && (
1500- < li
1501- key = { ci }
1502- className = { `text-neutral-200 py-1 pl-4 pr-10 hover:bg-matisse-400 dark:hover:bg-shark-500` }
1503- onClick = { item . clicked }
1504- >
1505- < MenuItem
1506- isConnected = { isConnected && ! isRunning }
1507- isOther = { false }
1508- item = { item }
1509- />
1510- </ li >
1511- ) ,
1512- ) }
1496+ { moreMenu . map ( ( item , ci ) => (
1497+ < li
1498+ key = { ci }
1499+ className = { `text-neutral-200 py-1 pl-4 pr-10 hover:bg-matisse-400 dark:hover:bg-shark-500` }
1500+ onClick = { item . clicked }
1501+ >
1502+ < MenuItem
1503+ isConnected = { isConnected && ! isRunning }
1504+ isOther = { false }
1505+ item = { item }
1506+ />
1507+ </ li >
1508+ ) ) }
15131509 </ ul >
15141510 </ div >
15151511 ) }
You can’t perform that action at this time.
0 commit comments