File tree Expand file tree Collapse file tree 1 file changed +1
-14
lines changed
packages/web/app/src/pages Expand file tree Collapse file tree 1 file changed +1
-14
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import { SchemaVariantFilter } from '@/components/target/explorer/filter';
6
6
import { Alert , AlertDescription , AlertTitle } from '@/components/ui/alert' ;
7
7
import { Button } from '@/components/ui/button' ;
8
8
import { DateRangePicker , presetLast7Days } from '@/components/ui/date-range-picker' ;
9
- import { EmptyList , noSchemaVersion } from '@/components/ui/empty-list' ;
9
+ import { noSchemaVersion } from '@/components/ui/empty-list' ;
10
10
import { Link } from '@/components/ui/link' ;
11
11
import { Meta } from '@/components/ui/meta' ;
12
12
import { Subtitle , Title } from '@/components/ui/page' ;
@@ -351,24 +351,11 @@ function ExplorerDeprecatedSchemaPageContent(props: {
351
351
}
352
352
353
353
const currentOrganization = query . data ?. organization ?. organization ;
354
- const hasCollectedOperations = query . data ?. hasCollectedOperations === true ;
355
354
356
355
if ( ! currentOrganization ) {
357
356
return null ;
358
357
}
359
358
360
- if ( ! hasCollectedOperations ) {
361
- return (
362
- < div className = "py-8" >
363
- < EmptyList
364
- title = "Hive is waiting for your first collected operation"
365
- description = "You can collect usage of your GraphQL API with Hive Client"
366
- docsUrl = "/features/usage-reporting"
367
- />
368
- </ div >
369
- ) ;
370
- }
371
-
372
359
return (
373
360
< DeprecatedSchemaExplorer
374
361
dataRetentionInDays = { currentOrganization . rateLimit . retentionInDays }
You can’t perform that action at this time.
0 commit comments