pull/715/head
Travis Fischer 2025-06-28 10:14:27 -05:00
rodzic bb1eb0880e
commit 1cc072952a
2 zmienionych plików z 11 dodań i 3 usunięć

Wyświetl plik

@ -65,8 +65,10 @@ export function AppConsumersList() {
<p>Error fetching customer subscriptions</p>
) : !consumers.length ? (
<p>
No subscriptions found. Subscribe to your first project to get
started.
No subscriptions found.{' '}
<Link href='/marketplace' className='link'>
Subscribe to your first project to get started.
</Link>
</p>
) : (
<div

Wyświetl plik

@ -5,6 +5,7 @@ import useInfiniteScroll from 'react-infinite-scroll-hook'
import { useAuthenticatedAgentic } from '@/components/agentic-provider'
import { LoadingIndicator } from '@/components/loading-indicator'
import { docsPublishingQuickStartUrl } from '@/lib/config'
import { useInfiniteQuery } from '@/lib/query-client'
export function AppProjectsList() {
@ -61,7 +62,12 @@ export function AppProjectsList() {
{isError ? (
<p>Error fetching projects</p>
) : !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'>
{projects.map((project) => (