Skip to content

Commit 490e657

Browse files
authored
Merge pull request #144 from supabase/fix/storage-list-limit
fix: change default limits for listing objects to 100
2 parents 8cfe54b + 45780d4 commit 490e657

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/storage/StorageFileApi.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { get, post, remove } from './fetch'
22
import { isBrowser } from './helpers'
3-
import { FileObject, FileOptions, Metadata, SearchOptions } from './types'
3+
import { FileObject, FileOptions, SearchOptions } from './types'
44

55
const DEFAULT_SEARCH_OPTIONS = {
6-
limit: 0,
6+
limit: 100,
77
offset: 0,
88
sortBy: {
99
column: 'name',

0 commit comments

Comments
 (0)