kopia lustrzana https://github.com/transitive-bullshit/chatgpt-api
pull/715/head
rodzic
bb1eb0880e
commit
1cc072952a
|
@ -65,8 +65,10 @@ export function AppConsumersList() {
|
||||||
<p>Error fetching customer subscriptions</p>
|
<p>Error fetching customer subscriptions</p>
|
||||||
) : !consumers.length ? (
|
) : !consumers.length ? (
|
||||||
<p>
|
<p>
|
||||||
No subscriptions found. Subscribe to your first project to get
|
No subscriptions found.{' '}
|
||||||
started.
|
<Link href='/marketplace' className='link'>
|
||||||
|
Subscribe to your first project to get started.
|
||||||
|
</Link>
|
||||||
</p>
|
</p>
|
||||||
) : (
|
) : (
|
||||||
<div
|
<div
|
||||||
|
|
|
@ -5,6 +5,7 @@ import useInfiniteScroll from 'react-infinite-scroll-hook'
|
||||||
|
|
||||||
import { useAuthenticatedAgentic } from '@/components/agentic-provider'
|
import { useAuthenticatedAgentic } from '@/components/agentic-provider'
|
||||||
import { LoadingIndicator } from '@/components/loading-indicator'
|
import { LoadingIndicator } from '@/components/loading-indicator'
|
||||||
|
import { docsPublishingQuickStartUrl } from '@/lib/config'
|
||||||
import { useInfiniteQuery } from '@/lib/query-client'
|
import { useInfiniteQuery } from '@/lib/query-client'
|
||||||
|
|
||||||
export function AppProjectsList() {
|
export function AppProjectsList() {
|
||||||
|
@ -61,7 +62,12 @@ export function AppProjectsList() {
|
||||||
{isError ? (
|
{isError ? (
|
||||||
<p>Error fetching projects</p>
|
<p>Error fetching projects</p>
|
||||||
) : !projects.length ? (
|
) : !projects.length ? (
|
||||||
<p>No projects found. Create your first project to get started.</p>
|
<p>
|
||||||
|
No projects found.{' '}
|
||||||
|
<Link href={docsPublishingQuickStartUrl} className='link'>
|
||||||
|
Create your first project to get started.
|
||||||
|
</Link>
|
||||||
|
</p>
|
||||||
) : (
|
) : (
|
||||||
<div className='grid grid-cols grid-cols-1 gap-4 sm:grid-cols-2 xl:grid-cols-3'>
|
<div className='grid grid-cols grid-cols-1 gap-4 sm:grid-cols-2 xl:grid-cols-3'>
|
||||||
{projects.map((project) => (
|
{projects.map((project) => (
|
||||||
|
|
Ładowanie…
Reference in New Issue