Skip to content

Commit

Permalink
fix: fixed error in get of workspace name; removed forced not null
Browse files Browse the repository at this point in the history
  • Loading branch information
SchadenKai committed Sep 25, 2024
1 parent faf8fdb commit 38e72ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/components/globalSidebar/GlobalSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ export const GlobalSidebar = ({ openSidebar, user }: GlobalSidebarProps) => {
side="right"
delayDuration={0}
>
{workspaces!.workspace_name
? workspaces!.workspace_name
{workspaces?.workspace_name
? workspaces.workspace_name
: "enMedD AI"}
</CustomTooltip>
</div>
Expand Down

0 comments on commit 38e72ea

Please sign in to comment.