Skip to content

Commit d506511

Browse files
author
Eunsoo Lee
committed
Merge branch 'feature/ui-ux-refresh' into ui-ux-refresh_eunsoo
2 parents 1719332 + c03ce51 commit d506511

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/frontend_react/src/api/config.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ export function getConfigData() {
4444
export 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."

src/frontend_react/src/components/content/TaskDetails.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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">

src/frontend_react/src/coral/components/Panels/PanelRightToolbar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
);

0 commit comments

Comments
 (0)