Skip to content

Commit 8793a5b

Browse files
committed
Tune the hypstore demo
1 parent c2d667f commit 8793a5b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

hypstore/src/Page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ const modes: { key: Mode, label: string }[] = [
1111
{ key: 'grep', label: 'Grep' },
1212
]
1313

14-
const grepLimit = 100
14+
const grepLimit = 30
1515

1616
function defaultQuery(mode: Mode, table: string): string {
17-
return mode === 'sql' ? `SELECT * FROM ${table} LIMIT 50` : ''
17+
return mode === 'sql' ? `SELECT * FROM ${table} LIMIT 30` : ''
1818
}
1919

2020
function exampleQueries(mode: Mode, table: string): string[] {

0 commit comments

Comments
 (0)