diff --git a/cms/quivr/.env.example b/cms/quivr/.env.example index bb25a7239..4be889b2a 100644 --- a/cms/quivr/.env.example +++ b/cms/quivr/.env.example @@ -6,3 +6,17 @@ ADMIN_JWT_SECRET=tobemodified TRANSFER_TOKEN_SALT=tobemodified JWT_SECRET=tobemodified +# Database +DATABASE_CLIENT=postgres +# DATABASE_FILENAME=.tmp/data.db +DATABASE_HOST= +DATABASE_PORT=5432 +DATABASE_NAME=postgres +DATABASE_USERNAME=postgres +DATABASE_PASSWORD= +DATABASE_SSL=false +AWS_ACCESS_KEY_ID= +AWS_SECRET_ACCESS_KEY= +AWS_REGION= +AWS_BUCKET= +RESEND_API_KEY= diff --git a/cms/quivr/package.json b/cms/quivr/package.json index 161a421f4..6366f6c4a 100644 --- a/cms/quivr/package.json +++ b/cms/quivr/package.json @@ -28,7 +28,7 @@ "uuid": "c2cbd510-4048-4ef6-b14c-0e3d74744031" }, "engines": { - "node": ">=16.0.0 <=20.x.x", + "node": ">=16.0.0 <=18.x.x", "npm": ">=6.0.0" }, "license": "MIT" diff --git a/frontend/lib/components/Sidebar/components/SidebarFooter/SidebarFooter.tsx b/frontend/lib/components/Sidebar/components/SidebarFooter/SidebarFooter.tsx index aa2097995..7645b721d 100644 --- a/frontend/lib/components/Sidebar/components/SidebarFooter/SidebarFooter.tsx +++ b/frontend/lib/components/Sidebar/components/SidebarFooter/SidebarFooter.tsx @@ -1,3 +1,5 @@ +import { Fragment } from "react"; + import { BrainManagementButton } from "@/lib/components/Sidebar/components/SidebarFooter/components/BrainManagementButton"; import { UpgradeToPlus } from "./components/UpgradeToPlus"; @@ -21,7 +23,9 @@ export const SidebarFooter = ({ return (
- {showButtons.map((button) => buttons[button])} + {showButtons.map((button) => ( + {buttons[button]} + ))}
);