Skip to content

Commit

Permalink
chore: show nominations if bonding
Browse files Browse the repository at this point in the history
  • Loading branch information
rossbulat committed Jan 27, 2025
1 parent b75343f commit c8408e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/app/src/pages/Nominate/Active/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ export const Active = () => {
const { t } = useTranslation()
const { openHelp } = useHelp()
const { syncing } = useSyncing()
const { inSetup } = useStaking()
const { getNominations } = useBalances()
const { inSetup, isBonding } = useStaking()
const { openCanvas } = useOverlay().canvas
const { isFastUnstaking } = useUnstaking()
const { formatWithPrefs } = useValidators()
Expand Down Expand Up @@ -61,7 +61,7 @@ export const Active = () => {
<Status height={ROW_HEIGHT} />
</RowSection>
</PageRow>
{!inSetup() && (
{isBonding() && (
<PageRow>
<CardWrapper>
{nominated?.length || inSetup() || syncing ? (
Expand Down

0 comments on commit c8408e2

Please sign in to comment.