Skip to content

Commit f4ed93f

Browse files
committed
fix: typing
1 parent e0a9ef7 commit f4ed93f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/sections/item-search.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,9 @@ function Search({
209209
};
210210

211211
const downloadStacGeoparquet = () => {
212-
return new Blob(items ? [stac_wasm.stacJsonToParquet(items)] : []);
212+
return new Blob(
213+
items ? [stac_wasm.stacJsonToParquet(items) as BlobPart] : []
214+
);
213215
};
214216

215217
return (

0 commit comments

Comments
 (0)