Skip to content

Commit

Permalink
fix: change default sort type
Browse files Browse the repository at this point in the history
  • Loading branch information
whtsupbab3 committed Dec 24, 2024
1 parent da5610e commit a4b00d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/layout/ContentHome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ type SortType = 'value' | 'id';

export default function ContentHome() {
const [display, setDisplay] = useState<DisplayType>('open');
const [sortType, setSortType] = useState<SortType>('id');
const [sortType, setSortType] = useState<SortType>('value');
const chain = useGetChain();

const bounties = trpc.bounties.useInfiniteQuery(
Expand Down

0 comments on commit a4b00d2

Please sign in to comment.