Skip to content

Commit e57c78d

Browse files
committed
troubleshooting
1 parent 6ca414c commit e57c78d

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/lib/Map.svelte

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import { createEventDispatcher } from "svelte";
66
77
const basePath = import.meta.env.BASE_URL;
8-
console.log("basePath", basePath);
98
109
// Props
1110
export let markers = [];

src/lib/geodata.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ function parseCsv(csvText) {
101101
const lines = csvText.trim().split('\n');
102102

103103
const headers = lines[0].split('\t').map(h => h.trim());
104+
console.log("headers", headers);
104105

105106
// Pre-allocate array for better performance
106107
const rows = new Array(lines.length - 1);

0 commit comments

Comments
 (0)