Skip to content

Commit 518de6e

Browse files
committed
feat: show rating view even if notEnoughRating=true
1 parent bd5f698 commit 518de6e

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

src/components/OperationCard.tsx

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,14 @@ export const OperationCard = ({
5858
<div className="flex-1" />
5959
<div className="flex flex-col items-end">
6060
<div className="w-full flex justify-end text-zinc-500">
61-
{!operation.notEnoughRating && (
62-
<div className="flex items-center mr-4">
63-
<Icon icon="star" className="mr-1.5" />
64-
<OperationRating
65-
className="text-sm"
66-
operation={operation}
67-
layout="horizontal"
68-
/>
69-
</div>
70-
)}
61+
<div className="flex items-center mr-4">
62+
<Icon icon="star" className="mr-1.5" />
63+
<OperationRating
64+
className="text-sm"
65+
operation={operation}
66+
layout="horizontal"
67+
/>
68+
</div>
7169

7270
<Tooltip2
7371
className="mr-4"

0 commit comments

Comments
 (0)