Skip to content

Commit

Permalink
🐛 Attempt to fix "react not found" in ci script
Browse files Browse the repository at this point in the history
related to #1910
  • Loading branch information
baptisteArno committed Dec 1, 2024
1 parent 1a1aa3c commit c19d208
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { env } from "@typebot.io/env";
import { parseNumberWithCommas } from "@typebot.io/lib/utils";
import type { SendMailOptions } from "nodemailer";
import type { ComponentProps } from "react";
import * as React from "react";
import { Head } from "../components/Head";
import { HeroImage } from "../components/HeroImage";
import { Text } from "../components/Text";
Expand Down
1 change: 1 addition & 0 deletions packages/emails/src/emails/DefaultBotNotificationEmail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
MjmlSection,
MjmlSpacer,
} from "@faire/mjml-react";
import * as React from "react";
import { Button } from "../components/Button";
import { Head } from "../components/Head";
import { Text } from "../components/Text";
Expand Down
1 change: 1 addition & 0 deletions packages/emails/src/emails/GuestInvitationEmail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { render } from "@faire/mjml-react/utils/render";
import { env } from "@typebot.io/env";
import type { SendMailOptions } from "nodemailer";
import type { ComponentProps } from "react";
import * as React from "react";
import { Button } from "../components/Button";
import { Head } from "../components/Head";
import { HeroImage } from "../components/HeroImage";
Expand Down
1 change: 1 addition & 0 deletions packages/emails/src/emails/MagicLinkEmail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { render } from "@faire/mjml-react/utils/render";
import { env } from "@typebot.io/env";
import type { SendMailOptions } from "nodemailer";
import type { ComponentProps } from "react";
import * as React from "react";
import { Button } from "../components/Button";
import { Head } from "../components/Head";
import { HeroImage } from "../components/HeroImage";
Expand Down
1 change: 1 addition & 0 deletions packages/emails/src/emails/ReachedChatsLimitEmail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import { env } from "@typebot.io/env";
import { parseNumberWithCommas } from "@typebot.io/lib/utils";
import type { SendMailOptions } from "nodemailer";
import type { ComponentProps } from "react";
import * as React from "react";
import { Button } from "../components/Button";
import { Head } from "../components/Head";
import { HeroImage } from "../components/HeroImage";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { render } from "@faire/mjml-react/utils/render";
import { env } from "@typebot.io/env";
import type { SendMailOptions } from "nodemailer";
import type { ComponentProps } from "react";
import * as React from "react";
import { Button } from "../components/Button";
import { Head } from "../components/Head";
import { HeroImage } from "../components/HeroImage";
Expand Down

0 comments on commit c19d208

Please sign in to comment.