mirror of
https://github.com/supabase/supabase.git
synced 2026-06-20 14:26:06 +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,6 +1,7 @@
|
||||
import { Markdown } from 'components/interfaces/Markdown'
|
||||
import { useEffect, useState } from 'react'
|
||||
|
||||
import { Markdown } from '@/components/interfaces/Markdown'
|
||||
|
||||
interface MarkdownContentProps {
|
||||
content: string | null | undefined
|
||||
integrationId?: string
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
import { useParams } from 'common'
|
||||
import { Markdown } from 'components/interfaces/Markdown'
|
||||
import { PropsWithChildren } from 'react'
|
||||
import { cn } from 'ui'
|
||||
|
||||
import { useAvailableIntegrations } from '../../Landing/useAvailableIntegrations'
|
||||
import { FilesViewer } from './FilesViewer'
|
||||
import { MarkdownContent } from './MarkdownContent'
|
||||
import { Markdown } from '@/components/interfaces/Markdown'
|
||||
import { InlineLinkClassName } from '@/components/ui/InlineLink'
|
||||
|
||||
const getSiteUrlLabel = (url: string | undefined | null) => {
|
||||
|
||||
Reference in New Issue
Block a user