Fix undefined turned into a "undefined" string due to string concat
This commit is contained in:
parent
d8e6d349a0
commit
e57b362ee0
1 changed files with 3 additions and 1 deletions
|
@ -323,7 +323,9 @@ function StatusPage() {
|
||||||
|
|
||||||
const closeLink = useMemo(() => {
|
const closeLink = useMemo(() => {
|
||||||
const { prevLocation } = snapStates;
|
const { prevLocation } = snapStates;
|
||||||
const pathname = prevLocation?.pathname + (prevLocation?.search || '');
|
const pathname =
|
||||||
|
(prevLocation?.pathname || '') + (prevLocation?.search || '');
|
||||||
|
console.log('X', typeof pathname);
|
||||||
if (
|
if (
|
||||||
!pathname ||
|
!pathname ||
|
||||||
matchPath('/:instance/s/:id', pathname) ||
|
matchPath('/:instance/s/:id', pathname) ||
|
||||||
|
|
Loading…
Add table
Reference in a new issue