File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,8 @@ export function getConfigData() {
4444export async function getUserInfo ( ) : Promise < UserInfo [ ] > {
4545 try {
4646 const response = await fetch ( "/.auth/me" ) ;
47+ console . log ( "Fetching user info from: " , "/.auth/me" ) ;
48+ console . log ( "Response " , response ) ;
4749 if ( ! response . ok ) {
4850 console . log (
4951 "No identity provider found. Access to chat will be blocked."
Original file line number Diff line number Diff line change @@ -52,9 +52,7 @@ const TaskDetails: React.FC<TaskDetailsProps> = ({
5252 return null ;
5353 }
5454 } ; return (
55- < div
56- className = "task-details-container"
57- >
55+ < div className = "task-details-container" >
5856 < PanelRightToolbar panelTitle = "Progress" > </ PanelRightToolbar >
5957 < div className = "task-details-section" >
6058 < div className = "task-details-progress-header" >
Original file line number Diff line number Diff line change @@ -76,12 +76,12 @@ const PanelRightToolbar: React.FC<PanelRightToolbarProps> = ({
7676 } }
7777 >
7878 { children }
79- < Button
79+ { /* <Button
8080 appearance="subtle"
8181 icon={<Dismiss />}
8282 onClick={handleDismiss} // Handle dismiss logic
8383 aria-label="Close panel"
84- />
84+ /> */ }
8585 </ div >
8686 </ div >
8787 ) ;
You can’t perform that action at this time.
0 commit comments