This repository was archived by the owner on May 30, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -26,13 +26,13 @@ function ReviewItem(props: {review: Review}): JSX.Element {
26
26
const status = ( status : ReviewStatusEnum ) => {
27
27
switch ( status ) {
28
28
case ReviewStatusEnum . Pending :
29
- return < SyncOutlined spin />
29
+ return < SyncOutlined />
30
30
case ReviewStatusEnum . Approved :
31
31
return < CheckOutlined style = { { color : "green" } } />
32
32
case ReviewStatusEnum . Rejected :
33
33
return < CloseOutlined style = { { color : "red" } } />
34
34
default :
35
- return < SyncOutlined spin />
35
+ return < SyncOutlined />
36
36
}
37
37
}
38
38
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ function mapStateToIcon(state: StatusState): JSX.Element {
66
66
case StatusState . Null :
67
67
return < > </ >
68
68
case StatusState . Pending :
69
- return < SyncOutlined spin />
69
+ return < SyncOutlined />
70
70
case StatusState . Success :
71
71
return < CheckOutlined style = { { color : colorSuccess } } />
72
72
case StatusState . Failure :
@@ -76,7 +76,7 @@ function mapStateToIcon(state: StatusState): JSX.Element {
76
76
case StatusState . Skipped :
77
77
return < StopOutlined />
78
78
default :
79
- return < SyncOutlined spin />
79
+ return < SyncOutlined />
80
80
}
81
81
}
82
82
You can’t perform that action at this time.
0 commit comments