Skip to content

Commit 694b20b

Browse files
authored
app: fix maperture links. (#343)
1 parent aa7edeb commit 694b20b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/src/Builds.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -170,14 +170,14 @@ function Builds() {
170170
type: "maplibre-gl",
171171
renderer: "maplibre-gl",
172172
index: 0,
173-
url: `https://build-metadata.protomaps.dev/style@${latestStyle}+theme@${theme}+tiles@${leftKey}.json`,
173+
url: `https://build-metadata.protomaps.dev/style@${latestStyle()}+theme@${theme}+tiles@${leftKey}.json`,
174174
};
175175
const right: MaperturePayload = {
176176
name: `${rightKey} ${latestStyle()} ${theme}`,
177177
type: "maplibre-gl",
178178
renderer: "maplibre-gl",
179179
index: 0,
180-
url: `https://build-metadata.protomaps.dev/style@${latestStyle}+theme@${theme}+tiles@${rightKey}.json`,
180+
url: `https://build-metadata.protomaps.dev/style@${latestStyle()}+theme@${theme}+tiles@${rightKey}.json`,
181181
};
182182
const payload = JSON.stringify([left, right]);
183183
open(

0 commit comments

Comments
 (0)