Skip to content

Commit

Permalink
Fix tsc check
Browse files Browse the repository at this point in the history
  • Loading branch information
petyosi committed Feb 6, 2025
1 parent 536444f commit a038624
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ import { ColumnDef, getCoreRowModel, useReactTable } from '@tanstack/react-table
import { flexRender } from '@tanstack/react-table'
import * as React from 'react'

import { ScrollSeekPlaceholderProps } from '../'
import { FillerRowProps, TableVirtuoso } from '../src'
import { ScrollSeekPlaceholderProps, FillerRowProps, TableVirtuoso } from '../src'

const items: ReturnType<typeof item>[] = []
function item(index: number) {
Expand Down
2 changes: 1 addition & 1 deletion packages/react-virtuoso/examples/test-case-460.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useCallback, useEffect, useState } from 'react'

import { Virtuoso, VirtuosoProps } from '../'
import { Virtuoso, VirtuosoProps } from '../src'

const getRandomArbitrary = (min: number, max: number) => {
return Math.random() * (max - min) + min
Expand Down

0 comments on commit a038624

Please sign in to comment.