feat: implement full authentication system with CSRF protection and email verification flow
All checks were successful
Build and Push App / build (push) Successful in 5m59s
All checks were successful
Build and Push App / build (push) Successful in 5m59s
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
import React from 'react';
|
||||
import { Calendar, MapPin, ArrowRight, Clock } from 'lucide-react';
|
||||
import Link from 'next/link';
|
||||
import { sanitizeHTML } from '../lib/sanitize';
|
||||
|
||||
interface Event {
|
||||
id: string;
|
||||
@@ -74,7 +75,7 @@ const EventTimeline = ({ events }: EventTimelineProps) => {
|
||||
</div>
|
||||
<div
|
||||
className="text-gray-600 text-sm line-clamp-2 prose-sm"
|
||||
dangerouslySetInnerHTML={{ __html: event.description }}
|
||||
dangerouslySetInnerHTML={{ __html: sanitizeHTML(event.description) }}
|
||||
/>
|
||||
|
||||
<div className="pt-4 flex items-center justify-between">
|
||||
|
||||
Reference in New Issue
Block a user