We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ab718f commit 130e5d3Copy full SHA for 130e5d3
src/components/WranglerCommand.astro
@@ -24,7 +24,7 @@ function getCommand(path: string) {
24
node = next.subtree;
25
}
26
27
- throw new Error(`[WranglerCommand] Command \"${path}\" not found`);
+ throw new Error(`[WranglerCommand] Command "${path}" not found`);
28
29
30
const props = z.object({
@@ -36,7 +36,7 @@ let { command } = props.parse(Astro.props);
36
const definition = getCommand(command);
37
38
if (!definition.args) {
39
- throw new Error(`[WranglerCommand] \"${command}\" has no arguments`);
+ throw new Error(`[WranglerCommand] "${command}" has no arguments`);
40
41
42
const positionals = definition.positionalArgs;
0 commit comments