Skip to content

Commit

Permalink
fix parse error
Browse files Browse the repository at this point in the history
  • Loading branch information
kuboon committed Dec 12, 2024
1 parent 78693c9 commit 6e7c7bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ let csv = "/csv/default.csv"
if (hash.length > 0) {
if(hash.startsWith("v=2&")) {
const params = new URLSearchParams(hash);
csv = params.get("csv")!
csv = params.get("fetch")!
} else {
csv = hash
}
Expand Down

0 comments on commit 6e7c7bb

Please sign in to comment.