Skip to content

Commit

Permalink
Admin: fix placemark url
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannaPeanut committed Feb 26, 2025
1 parent 085ea52 commit 799cf01
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const SubsectionPlacemarkImport = ({ project }: Props) => {
}
}

const placemarkPlayUrl = `https://play.placemark.io/?load=https://${!isProduction && "staging."}trassenscout.de/api/projects/${projectSlug}.json`
const placemarkPlayUrl = `https://play.placemark.io/?load=https://${!isProduction ? "staging." : ""}trassenscout.de/api/projects/${projectSlug}.json`

const handleUploadChange = async (event: React.ChangeEvent<HTMLInputElement>) => {
const files = event.target.files as FileList
Expand Down

0 comments on commit 799cf01

Please sign in to comment.