Skip to content

Commit

Permalink
- minor fix in TasksListCard.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
kelvink96 committed Oct 31, 2023
1 parent 6d3b56b commit aee7b04
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const TasksListCard = ({data, error, loading, ...others}: Props) => {
<CalendarOutlined/>
<Typography.Text>{item.due_date}</Typography.Text>
</Space>
<UserAvatar fullName={item.assigned_to} size="medium"/>
<UserAvatar fullName={item.assigned_to} size="middle"/>
</Flex>
</AntdCard>
</List.Item>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import {Alert, Avatar, CardProps, Space, Table, Typography} from "antd";
import {Alert, CardProps, Space, Table, Typography} from "antd";
import {LearningCourses} from "../../../../types";
import {CalendarOutlined, SwapRightOutlined} from "@ant-design/icons";
import {colourNameToHex, getNameInitials, isColorLight} from "../../../../utils";
import {ColumnsType} from "antd/es/table";
import {Card, UserAvatar} from "../../../index.ts";
import {ReactNode} from "react";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {CirclePacking} from "@ant-design/charts";
import {Button, CardProps, Popover, Space, Typography} from "antd";
import {Button, CardProps, Popover} from "antd";
import {Card} from "../../../index.ts";
import {QuestionOutlined} from "@ant-design/icons";

Expand Down

0 comments on commit aee7b04

Please sign in to comment.