Skip to content
Snippets Groups Projects
Unverified Commit 2a548e79 authored by Jamie Tanna's avatar Jamie Tanna Committed by GitHub
Browse files

fix: Correct variable interpolation in error message (#24991)

parent 3a19e5ec
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,7 @@ export function getPreset({
const resolver = resolvers[platform];
if (!resolver) {
throw new Error(
`The platform you're using ($platform) does not support local presets.`
`The platform you're using (${platform}) does not support local presets.`
);
}
const endpoint = GlobalConfig.get('endpoint');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment