mirror of
https://github.com/supabase/supabase.git
synced 2026-06-20 01:27:21 +08:00
style: require sorted imports in studio/components (#44408)
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
import { useParams } from 'common'
|
||||
import { AlertCircle, ArrowUpRight, CheckCircle2 } from 'lucide-react'
|
||||
import Image from 'next/image'
|
||||
import Link from 'next/link'
|
||||
|
||||
import { useParams } from 'common'
|
||||
import { useBranchesQuery } from 'data/branches/branches-query'
|
||||
import { useGitHubConnectionsQuery } from 'data/integrations/github-connections-query'
|
||||
import { useSelectedOrganizationQuery } from 'hooks/misc/useSelectedOrganization'
|
||||
import { useSelectedProjectQuery } from 'hooks/misc/useSelectedProject'
|
||||
import { BASE_PATH } from 'lib/constants'
|
||||
import { HoverCard, HoverCardContent, HoverCardTrigger } from 'ui'
|
||||
|
||||
import { useBranchesQuery } from '@/data/branches/branches-query'
|
||||
import { useGitHubConnectionsQuery } from '@/data/integrations/github-connections-query'
|
||||
import { useSelectedOrganizationQuery } from '@/hooks/misc/useSelectedOrganization'
|
||||
import { useSelectedProjectQuery } from '@/hooks/misc/useSelectedProject'
|
||||
import { BASE_PATH } from '@/lib/constants'
|
||||
|
||||
export const GitHubStatus = () => {
|
||||
const { ref: projectRef } = useParams()
|
||||
const { data: selectedProject } = useSelectedProjectQuery()
|
||||
|
||||
Reference in New Issue
Block a user