Skip to content

Commit

Permalink
chore: fix 'is client' class assignment.
Browse files Browse the repository at this point in the history
  • Loading branch information
gonenidan committed Jan 7, 2025
1 parent 555d751 commit 2bd8d73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/components/Table/exports/cells/NodeCell/NodeCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function NodeCell<Data>(props: ExtendedCellProps<Data, NodeCellValue>) {

const isBackendClasses = clsx({
'is-backend': isBackend,
'is-client': isBackend
'is-client': !isBackend
})

const formattedRoles = roles?.length
Expand Down

0 comments on commit 2bd8d73

Please sign in to comment.