Skip to content

Commit

Permalink
Use absolute URL for default zarr_samples.csv
Browse files Browse the repository at this point in the history
  • Loading branch information
will-moore committed Mar 10, 2023
1 parent 54f299d commit 106b166
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import Papa from "papaparse";

import CatelogTable from "./CatelogTable";

const zarr_samples_csv = "https://raw.githubusercontent.com/ome/ome-zarr-catalog/main/public/zarr_samples.csv";

const supportedColumns = [
"Version",
"Axes",
Expand Down Expand Up @@ -40,7 +42,7 @@ export default function App() {
new URL(csvUrl);
} catch (error) {
// If no valid URL provided, use default
csvUrl = "/zarr_samples.csv";
csvUrl = zarr_samples_csv;
}


Expand Down

0 comments on commit 106b166

Please sign in to comment.