Skip to content

Commit 8f979c0

Browse files
committed
fix: don't pass datetime bounds if filtering is false
1 parent 6510652 commit 8f979c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default function App() {
3636
} = useStacValue({
3737
href,
3838
fileUpload,
39-
datetimeBounds,
39+
datetimeBounds: filter ? datetimeBounds : undefined,
4040
stacGeoparquetItemId,
4141
});
4242
const items = userItems || linkedItems;

0 commit comments

Comments
 (0)