diff --git a/Dockerfile b/Dockerfile index 95ac8ac594..aacf2009ed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ARG SCOPE ENV SCOPE=${SCOPE} FROM base AS pruner -RUN yarn global add turbo@1.1.5 +RUN yarn global add turbo@1.2.9 COPY . . RUN turbo prune --scope=${SCOPE} --docker diff --git a/apps/builder/components/auth/SignInForm.tsx b/apps/builder/components/auth/SignInForm.tsx index eb709cd233..d20a7121b5 100644 --- a/apps/builder/components/auth/SignInForm.tsx +++ b/apps/builder/components/auth/SignInForm.tsx @@ -18,9 +18,9 @@ import { NextChakraLink } from 'components/nextChakra/NextChakraLink' const hasNoAuthProvider = (!process.env.NEXT_PUBLIC_SMTP_FROM || process.env.NEXT_PUBLIC_SMTP_AUTH_DISABLED === 'true') && - process.env.NEXT_PUBLIC_GOOGLE_CLIENT_ID && - process.env.NEXT_PUBLIC_GITHUB_CLIENT_ID && - process.env.NEXT_PUBLIC_FACEBOOK_CLIENT_ID + !process.env.NEXT_PUBLIC_GOOGLE_CLIENT_ID && + !process.env.NEXT_PUBLIC_GITHUB_CLIENT_ID && + !process.env.NEXT_PUBLIC_FACEBOOK_CLIENT_ID type Props = { defaultEmail?: string diff --git a/apps/docs/docs/self-hosting/configuration.md b/apps/docs/docs/self-hosting/configuration.md index 92326c6c73..3f3cbc95fd 100644 --- a/apps/docs/docs/self-hosting/configuration.md +++ b/apps/docs/docs/self-hosting/configuration.md @@ -42,7 +42,6 @@ Used for sending email notifications and authentication | SMTP_HOST | -- | SMTP host. (i.e. `smtp.host.com`) | | SMTP_PORT | 25 | SMTP port | | NEXT_PUBLIC_SMTP_FROM | - | From name and email (i.e. `"Typebot Notifications" `) | -| NEXT_PUBLIC_SMTP_FROM | - | From name and email (i.e. `"Typebot Notifications" `) | | NEXT_PUBLIC_SMTP_AUTH_DISABLED | false | To disable the authentication by email but still use the provided config for notifications |

@@ -255,7 +254,6 @@ Used for sending email notifications and authentication | SMTP_HOST | -- | SMTP host. (i.e. `smtp.host.com`) | | SMTP_PORT | 25 | SMTP port | | NEXT_PUBLIC_SMTP_FROM | - | From name and email (i.e. `"Typebot Notifications" `) | -| NEXT_PUBLIC_SMTP_FROM | - | From name and email (i.e. `"Typebot Notifications" `) |

diff --git a/packages/models/package.json b/packages/models/package.json index 839a8cdfaa..4819156715 100644 --- a/packages/models/package.json +++ b/packages/models/package.json @@ -10,7 +10,8 @@ }, "dependencies": { "next": "^12.1.6", - "db": "*" + "db": "*", + "@udecode/plate-core": "^11.0.0" }, "scripts": { "build": "tsc",