From e57b362ee06f0920e1c9bda0130db0466a64fc77 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Fri, 17 Feb 2023 11:28:25 +0800 Subject: [PATCH] Fix undefined turned into a "undefined" string due to string concat --- src/pages/status.jsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pages/status.jsx b/src/pages/status.jsx index 87b71a44..9086aaac 100644 --- a/src/pages/status.jsx +++ b/src/pages/status.jsx @@ -323,7 +323,9 @@ function StatusPage() { const closeLink = useMemo(() => { const { prevLocation } = snapStates; - const pathname = prevLocation?.pathname + (prevLocation?.search || ''); + const pathname = + (prevLocation?.pathname || '') + (prevLocation?.search || ''); + console.log('X', typeof pathname); if ( !pathname || matchPath('/:instance/s/:id', pathname) ||