Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions hightable/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,24 @@
"typecheck": "tsc"
},
"dependencies": {
"hightable": "0.20.1",
"hightable": "0.20.2",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-router": "7.9.3"
"react-router": "7.9.4"
},
"devDependencies": {
"@types/react": "19.2.0",
"@types/react-dom": "19.2.0",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@vitejs/plugin-react": "5.0.4",
"@vitest/coverage-v8": "3.2.4",
"eslint": "9.37.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "6.1.1",
"eslint-plugin-react-refresh": "0.4.23",
"eslint-plugin-react-hooks": "7.0.0",
"eslint-plugin-react-refresh": "0.4.24",
"globals": "16.4.0",
"typescript": "5.9.3",
"typescript-eslint": "8.45.0",
"vite": "7.1.9",
"typescript-eslint": "8.46.1",
"vite": "7.1.10",
"vitest": "3.2.4"
}
}
18 changes: 9 additions & 9 deletions hyparquet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,26 @@
"typecheck": "tsc"
},
"dependencies": {
"hightable": "0.20.1",
"hyparquet": "1.19.0",
"hightable": "0.20.2",
"hyparquet": "1.20.0",
"hyparquet-compressors": "1.1.1",
"hyperparam": "0.3.23",
"hyperparam": "0.3.25",
"react": "19.2.0",
"react-dom": "19.2.0"
},
"devDependencies": {
"@types/react": "19.2.0",
"@types/react-dom": "19.2.0",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@vitejs/plugin-react": "5.0.4",
"@vitest/coverage-v8": "3.2.4",
"eslint": "9.37.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "6.1.1",
"eslint-plugin-react-refresh": "0.4.23",
"eslint-plugin-react-hooks": "7.0.0",
"eslint-plugin-react-refresh": "0.4.24",
"globals": "16.4.0",
"typescript": "5.9.3",
"typescript-eslint": "8.45.0",
"vite": "7.1.9",
"typescript-eslint": "8.46.1",
"vite": "7.1.10",
"vitest": "3.2.4"
}
}
2 changes: 1 addition & 1 deletion hyparquet/src/Dropzone.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default function Dropzone({ children, onFileDrop, onUrlDrop }: DropzonePr
*/
function handleFileSelect(e: React.ChangeEvent<HTMLInputElement>): void {
const { files } = e.target
if (!files || files.length !== 1) return
if (files?.length !== 1) return
onFileDrop(files[0])
}

Expand Down
18 changes: 9 additions & 9 deletions icebird/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,25 @@
"typecheck": "tsc"
},
"dependencies": {
"hightable": "0.20.1",
"hyperparam": "0.3.23",
"icebird": "0.3.0",
"hightable": "0.20.2",
"hyperparam": "0.3.25",
"icebird": "0.3.1",
"react": "19.2.0",
"react-dom": "19.2.0"
},
"devDependencies": {
"@types/react": "19.2.0",
"@types/react-dom": "19.2.0",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@vitejs/plugin-react": "5.0.4",
"@vitest/coverage-v8": "3.2.4",
"eslint": "9.37.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "6.1.1",
"eslint-plugin-react-refresh": "0.4.23",
"eslint-plugin-react-hooks": "7.0.0",
"eslint-plugin-react-refresh": "0.4.24",
"globals": "16.4.0",
"typescript": "5.9.3",
"typescript-eslint": "8.45.0",
"vite": "7.1.9",
"typescript-eslint": "8.46.1",
"vite": "7.1.10",
"vitest": "3.2.4"
}
}
7 changes: 3 additions & 4 deletions icebird/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,9 @@ export default function App(): ReactNode {
.catch(setUnknownError)
}, [tableUrl, versions, setVersions, setUnknownError])

useEffect(() => {
if (!version) return
setPageProps(props => props ? { ...props, version } : undefined)
}, [setPageProps, version])
if (pageProps && version && pageProps.version !== version) {
setPageProps({ ...pageProps, version })
}

useEffect(() => {
if (!tableUrl || !versions || !version) return
Expand Down