Fix: Correct template literal syntax in Terms and Privacy pages
Some checks failed
CI / Frontend Lint & Type Check (push) Has been cancelled
CI / Frontend Build (push) Has been cancelled
CI / Backend Lint (push) Has been cancelled
CI / Backend Tests (push) Has been cancelled
CI / Docker Build (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
Deploy / Build & Push Images (push) Has been cancelled
Deploy / Deploy to Server (push) Has been cancelled
Deploy / Notify (push) Has been cancelled

This commit is contained in:
2025-12-16 15:47:46 +01:00
parent 2cf5a5d00d
commit 6f53780fd9
2 changed files with 2 additions and 2 deletions

View File

@ -234,7 +234,7 @@ export default function PrivacyPage() {
<div className="space-y-10">
{sections.map((section, i) => (
<section key={section.title} className="animate-slide-up" style={{ animationDelay: \`\${i * 30}ms\` }}>
<section key={section.title} className="animate-slide-up" style={{ animationDelay: `${i * 30}ms` }}>
<h2 className="text-heading-sm font-medium text-foreground mb-4">{section.title}</h2>
<div
className="prose-custom text-body text-foreground-muted leading-relaxed [&_ul]:list-disc [&_ul]:pl-5 [&_ul]:space-y-2 [&_li]:text-foreground-muted [&_strong]:text-foreground [&_p]:mb-4"

View File

@ -200,7 +200,7 @@ export default function TermsPage() {
<div className="space-y-10">
{sections.map((section, i) => (
<section key={section.title} className="animate-slide-up" style={{ animationDelay: \`\${i * 30}ms\` }}>
<section key={section.title} className="animate-slide-up" style={{ animationDelay: `${i * 30}ms` }}>
<h2 className="text-heading-sm font-medium text-foreground mb-4">{section.title}</h2>
<div
className="prose-custom text-body text-foreground-muted leading-relaxed [&_ul]:list-disc [&_ul]:pl-5 [&_ul]:space-y-2 [&_li]:text-foreground-muted [&_strong]:text-foreground [&_p]:mb-4"