Skip to content

Commit

Permalink
Add some code comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jaalah committed Mar 4, 2024
1 parent bc97769 commit bb3122f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/manager/src/features/Users/UsersLanding.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ export const UsersLanding = () => {
flags.parentChildAccountAccess && profile?.user_type === 'parent'
);

// Parent/Child accounts include additional "child account access" column.
const numCols = matchesLgUp
? showChildAccountAccessCol
? 6
Expand All @@ -80,6 +81,7 @@ export const UsersLanding = () => {
? 3
: 4;

// "last login" column omitted for proxy table.
const proxyNumCols = matchesLgUp ? 4 : numCols;

const handleDelete = (username: string) => {
Expand Down

0 comments on commit bb3122f

Please sign in to comment.