mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-05 01:58:50 +01:00
feat: add startup flag check to conditional rendering logic
This commit is contained in:
parent
49f87016a8
commit
084de9a912
3 changed files with 6 additions and 2 deletions
|
|
@ -157,7 +157,8 @@ export default function useSideNavLinks({
|
|||
Object.values(startupConfig.mcpServers).some(
|
||||
(server: any) =>
|
||||
(server.customUserVars && Object.keys(server.customUserVars).length > 0) ||
|
||||
server.isOAuth,
|
||||
server.isOAuth ||
|
||||
server.startup === false,
|
||||
)
|
||||
) {
|
||||
links.push({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue