File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ const AppRoot = () => {
77 const [ searchParams ] = useSearchParams ( ) ;
88 const projectId = searchParams . get ( "project" ) || localStorage . getItem ( 'projectId' ) ;
99 const flowId = searchParams . get ( "flow" ) || localStorage . getItem ( 'flowId' ) ;
10- const baseUrl = searchParams . get ( "baseurl" ) || localStorage . getItem ( 'baseurl ' ) ;
10+ const baseUrl = searchParams . get ( "baseurl" ) || localStorage . getItem ( 'baseUrl ' ) ;
1111
1212 if ( projectId !== localStorage . getItem ( 'projectId' ) ) {
1313 localStorage . removeItem ( "DSR" )
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import "./Header.css";
88import { Badge , Button } from "antd" ;
99
1010const getDisplayName = ( user ) => {
11- return user ?. email || "" ;
11+ return user ?. name || user ?. email || "" ;
1212} ;
1313
1414function Header ( ) {
You can’t perform that action at this time.
0 commit comments