Skip to content

Commit

Permalink
Change secret to access code at group table
Browse files Browse the repository at this point in the history
  • Loading branch information
camilovegag committed May 24, 2024
1 parent 660af0e commit af727e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const Members = styled(Body)`
font-weight: bold;
`;

export const Secret = styled(Body)`
export const AccessCode = styled(Body)`
font-weight: bold;
`;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { Action, Card, Group, Members, Secret } from './GroupsColumns.styled';
import { Action, Card, Group, Members, AccessCode } from './GroupsColumns.styled';

function GroupsColumns() {
return (
<Card>
<Group>Group</Group>
<Members>Members</Members>
<Secret>Secret</Secret>
<AccessCode>Access Code</AccessCode>
<Action>Action</Action>
</Card>
);
Expand Down

0 comments on commit af727e1

Please sign in to comment.