diff --git a/app/(dashboard)/transactions/page.tsx b/app/(dashboard)/transactions/page.tsx
index 45e72506..ca9f2d42 100644
--- a/app/(dashboard)/transactions/page.tsx
+++ b/app/(dashboard)/transactions/page.tsx
@@ -748,7 +748,7 @@ export default function TransactionsPage() {
/>
diff --git a/app/api/invoices/[id]/send/route.ts b/app/api/invoices/[id]/send/route.ts
index 864437e0..ab8dbf5d 100644
--- a/app/api/invoices/[id]/send/route.ts
+++ b/app/api/invoices/[id]/send/route.ts
@@ -33,7 +33,7 @@ export async function POST(
const emailService = getEmailService()
if (!emailService.isConfigured()) {
return NextResponse.json(
- { error: 'E-posttjänsten är inte konfigurerad. Aktivera e-posttillägget i inställningar.' },
+ { error: 'E-posttjänsten är inte konfigurerad. Kontrollera att RESEND_API_KEY och RESEND_FROM_EMAIL är satta i miljövariablerna.' },
{ status: 503 }
)
}
diff --git a/app/layout.tsx b/app/layout.tsx
index 54602406..9e8e05dc 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -62,6 +62,13 @@ export default function RootLayout({
+