Files
pulse/app/sites/[id]/journeys/error.tsx
2026-03-12 21:36:27 +01:00

14 lines
356 B
TypeScript

'use client'
import ErrorDisplay from '@/components/ErrorDisplay'
export default function JourneysError({ reset }: { error: Error; reset: () => void }) {
return (
<ErrorDisplay
title="Journeys failed to load"
message="We couldn't load the journey data. This might be a temporary issue — try again."
onRetry={reset}
/>
)
}