Skip to content

Commit

Permalink
Update GuestWorkspaceTable.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
Rahul-538 authored Dec 30, 2024
1 parent 934a6a6 commit a605795
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/GuestWorkspace/GuestWorkspaceTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ const GuestWorkspaceTable = (props) => {
guestWorkspaceData && guestWorkspaceData.length > 0
? pageSearch().map((el, i) => {
const isAuthenticated =
el.is_authenticated || authenticatedWorkspaces.includes(el.id);
el.is_autheticated || authenticatedWorkspaces.includes(el.id);
return [
el.id,
el.workspace_name,
Expand Down Expand Up @@ -399,4 +399,4 @@ const GuestWorkspaceTable = (props) => {
);
};

export default GuestWorkspaceTable;
export default GuestWorkspaceTable;

0 comments on commit a605795

Please sign in to comment.