coreui-free-react-admin-template icon indicating copy to clipboard operation
coreui-free-react-admin-template copied to clipboard

Potential Null Reference Error in App.js

Open xingarr opened this issue 3 months ago • 0 comments

Regex match could return null if theme parameter doesn't match the pattern.

Location: src/App.js, line 26 const theme = urlParams.get('theme') && urlParams.get('theme').match(/^[A-Za-z0-9\s]+/)[0]

Impact: Could throw an error if match returns null and you try to access [0].

xingarr avatar Oct 30 '25 02:10 xingarr