Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
936 changes: 559 additions & 377 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
"@adyen/adyen-web": "^6.33.0",
"@next/third-parties": "^16.1.6",
"@paypal/react-paypal-js": "^9.1.1",
"@react-email/components": "^1.0.10",
"@sentry/nextjs": "^10.38.0",
"@spree/sdk": "^1.0.0",
"@stripe/react-stripe-js": "^5.6.0",
Expand All @@ -35,6 +34,7 @@
"radix-ui": "^1.4.3",
"react": "^19",
"react-dom": "^19",
"react-email": "^6.1.4",
"react-svg-credit-card-payment-icons": "^5.1.2",
"resend": "^6.9.4",
"shadcn": "^4.0.2",
Expand Down
2 changes: 1 addition & 1 deletion src/app/dev/emails/[template]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { render } from "@react-email/render";
import Link from "next/link";
import { notFound } from "next/navigation";
import { render } from "react-email";
import { emailFixtures, getEmailFixture } from "../fixtures";

interface PreviewPageProps {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/emails/order-canceled.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
Row,
Section,
Text,
} from "@react-email/components";
} from "react-email";
import { getStoreName, getStoreUrl } from "@/lib/store";

interface LineItem {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/emails/order-confirmation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
Row,
Section,
Text,
} from "@react-email/components";
} from "react-email";
import { getStoreName, getStoreUrl } from "@/lib/store";

interface LineItem {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/emails/password-reset.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
Preview,
Section,
Text,
} from "@react-email/components";
} from "react-email";
import { getStoreName, getStoreUrl } from "@/lib/store";

interface PasswordResetEmailProps {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/emails/send.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import fs from "node:fs";
import path from "node:path";
import { render } from "@react-email/render";
import type { ReactElement } from "react";
import { render } from "react-email";
import { getStoreEmailFrom, isStoreEmailFromFallback } from "@/lib/store";

interface SendEmailOptions {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/emails/shipment-shipped.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
Row,
Section,
Text,
} from "@react-email/components";
} from "react-email";
import { getStoreName, getStoreUrl } from "@/lib/store";

interface ShippedItem {
Expand Down
Loading