Skip to content

Commit f81592d

Browse files
committed
Change SortButton style on sorted condition
1 parent 4fec838 commit f81592d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

components/SortButton.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ export const SortButton: React.FC<SortButtonProps> = (props) => {
2828
return (
2929
<Button
3030
loading={isSorting}
31-
shadow
32-
type={isSorted ? "success" : "secondary"}
31+
type={"secondary"}
3332
onClick={onClick}
3433
style={{ display: "block", margin: "0 auto" }}>
3534
{isSorted && (

0 commit comments

Comments
 (0)