Skip to content

Commit

Permalink
Fix dataset filtering condition in +page.svelte
Browse files Browse the repository at this point in the history
  • Loading branch information
ctwhome committed Mar 19, 2024
1 parent 720c8f9 commit 60fd284
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
url: 'https://s3.ctwhome.com/ruisdael/data/movie.zarr'
}
].filter((dataset) => {
if (import.meta.env) {
if (import.meta.env.DEV) {
return dataset;
} else {
return !dataset.dev;
Expand Down

0 comments on commit 60fd284

Please sign in to comment.