Skip to content

Commit

Permalink
fix: url bug
Browse files Browse the repository at this point in the history
  • Loading branch information
majkshkurti committed Jan 23, 2024
1 parent 284756e commit 0e02c2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/lib/api/layers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export const getLayerClassBreaks = async (
breaks: number,
): Promise<LayerClassBreaks> => {
const response = await fetchWithAuth(
`${LAYERS_API_BASE_URL}/${layerId}/class-breaks/${operation}/${column}/?breaks=${breaks}`,
`${LAYERS_API_BASE_URL}/${layerId}/class-breaks/${operation}/${column}?breaks=${breaks}`,
{
method: "GET",
},
Expand Down

0 comments on commit 0e02c2e

Please sign in to comment.