Skip to content

Commit

Permalink
feat: update table sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
icfor committed Mar 8, 2024
1 parent 552a69b commit 2972f0d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const xionToUSD = 10;

export const defaultAvatar = `${basePath}/default-avatar.svg`;

// Even if this can be retrieved from the params, hardcode it to avoid and
// Even if this can be retrieved from the params, hardcode it to avoid an
// extra request. It can be retrieved with this:
// const params = await queryClient.staking.params();
export const unbondingDays = isTestnet ? 3 : 21;
Expand Down
2 changes: 1 addition & 1 deletion src/features/core/components/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const HeaderTitleBase = <SortMethod extends string>({
return "180deg";
}

return sortingIndex === 1 ? "0deg" : "90deg";
return "0deg";
})(),
}}
/>
Expand Down

0 comments on commit 2972f0d

Please sign in to comment.