Skip to content

Commit

Permalink
chore: fix import order
Browse files Browse the repository at this point in the history
  • Loading branch information
drichar committed Oct 30, 2024
1 parent 4bc8104 commit 3962f9f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/src/routes/validators_.$validatorId.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { useQuery, useSuspenseQuery } from '@tanstack/react-query'
import { ErrorComponent, createFileRoute } from '@tanstack/react-router'
import { useWallet } from '@txnlab/use-wallet-react'
import { ValidatorNotFoundError } from '@/api/contracts'
import { constraintsQueryOptions, stakesQueryOptions, validatorQueryOptions } from '@/api/queries'
import { Loading } from '@/components/Loading'
import { Meta } from '@/components/Meta'
import { PageMain } from '@/components/PageMain'
import { ValidatorDetails } from '@/components/ValidatorDetails'
import { DetailsHeader } from '@/components/ValidatorDetails/DetailsHeader'
import { useQuery, useSuspenseQuery } from '@tanstack/react-query'
import { ErrorComponent, createFileRoute } from '@tanstack/react-router'
import { useWallet } from '@txnlab/use-wallet-react'

export const Route = createFileRoute('/validators_/$validatorId')({
beforeLoad: () => {
Expand Down

0 comments on commit 3962f9f

Please sign in to comment.