fix: error page for language switcher

This commit is contained in:
Christel Westerberg
2024-06-10 11:32:32 +02:00
parent 8de74af48a
commit f557c8e465
2 changed files with 7 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
"use client"
export default function Error({ error }: any) {
// Don't return any content if error
return null
}