Skip to content

Commit

Permalink
fix: Correct variable interpolation in error message (#24991)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamietanna committed Oct 3, 2023
1 parent 3a19e5e commit 2a548e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/config/presets/local/index.ts
Expand Up @@ -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');
Expand Down

0 comments on commit 2a548e7

Please sign in to comment.