From 08e65e0ec3f14ce9a59f8000bb92c06564e49dbd Mon Sep 17 00:00:00 2001 From: Markus Thielker Date: Sun, 15 Dec 2024 16:37:12 +0100 Subject: [PATCH] NORY-36: remove async from error display --- dashboard/src/components/error.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/components/error.tsx b/dashboard/src/components/error.tsx index 246431d..5e5ac12 100644 --- a/dashboard/src/components/error.tsx +++ b/dashboard/src/components/error.tsx @@ -3,7 +3,7 @@ interface ErrorDisplayProps { message: string; } -export async function ErrorDisplay({ title, message }: ErrorDisplayProps) { +export function ErrorDisplay({ title, message }: ErrorDisplayProps) { return ( <>

{title}