From 5be19c8c313453880a26afb5c664e98da408fa35 Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Thu, 12 Jun 2025 15:21:07 +0200 Subject: [PATCH 1/2] Update markdown-katex.js --- frontend/src/utils/chat/plugins/markdown-katex.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/utils/chat/plugins/markdown-katex.js b/frontend/src/utils/chat/plugins/markdown-katex.js index 1a590295c01..76fb940a7e1 100644 --- a/frontend/src/utils/chat/plugins/markdown-katex.js +++ b/frontend/src/utils/chat/plugins/markdown-katex.js @@ -106,7 +106,7 @@ function math_inline(state, silent) { match += 1; } - // No closing delimter found. Consume $ and continue. + // No closing delimiter found. Consume $ and continue. if (match === -1) { if (!silent) { state.pending += "$"; From 0cdcab40f8f28a10f0a56a28ee9de5bd02947f57 Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Thu, 12 Jun 2025 15:21:48 +0200 Subject: [PATCH 2/2] Update PRISMA.md --- server/utils/prisma/PRISMA.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/utils/prisma/PRISMA.md b/server/utils/prisma/PRISMA.md index 858cac3f396..6dbd19d563e 100644 --- a/server/utils/prisma/PRISMA.md +++ b/server/utils/prisma/PRISMA.md @@ -20,7 +20,7 @@ In the project root's `package.json`, there are several scripts set up to help y - **prisma:migrate**: Runs the migrations to ensure the database is in sync with the schema. - **prisma:seed**: Seeds the database with initial data. - **prisma:setup**: A convenience script that runs `prisma:generate`, `prisma:migrate`, and `prisma:seed` in sequence. -- **sqlite:migrate**: (To be run from the `server` directory) This script is for users transitioning from the old SQLite custom ORM setup to Prisma and will migrate all exisiting data over to Prisma. If you're a new user, your setup will already use Prisma. +- **sqlite:migrate**: (To be run from the `server` directory) This script is for users transitioning from the old SQLite custom ORM setup to Prisma and will migrate all existing data over to Prisma. If you're a new user, your setup will already use Prisma. To run any of these scripts, use `yarn` followed by the script name from the project root directory. For example: