Skip to content

Commit

Permalink
refactor: fix type for dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
tcsola committed Oct 24, 2024
1 parent d878fa6 commit f013644
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { Typography } from "@reearth/beta/lib/reearth-ui";
import { TeamMember } from "@reearth/services/gql";
import { styled } from "@reearth/services/theme";
import { FC } from "react";

import { Member } from "../../type";

const ListItem: FC<{ member: Member }> = ({ member }) => {
const ListItem: FC<{ member: TeamMember }> = ({ member }) => {
return (
<StyledListItem>
<Avatar>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ const Table = styled.div`
grid-template-columns: 5fr 2.5fr 2fr 1fr;
gap: 16px;
padding: 10px;
color: white;
color: ${({ theme }) => theme.content.main};
`;

const TableHeader = styled("div")(({ theme }) => ({
Expand Down

0 comments on commit f013644

Please sign in to comment.