Skip to content

Commit f7b3711

Browse files
authored
fix(nargo): Use yml extension for bug report link presented upon panic (#960)
fix(nargo): Use yml extension on the bug report link presented upon panic
1 parent 2e63492 commit f7b3711

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/nargo/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ fn main() -> eyre::Result<()> {
77
// Register a panic hook to display more readable panic messages to end-users
88
let (panic_hook, _) = HookBuilder::default()
99
.display_env_section(false)
10-
.panic_section("This is a bug. Consider opening an issue at https://github.com/noir-lang/noir/issues/new?labels=bug&template=bug_report.md")
10+
.panic_section("This is a bug. Consider opening an issue at https://github.com/noir-lang/noir/issues/new?labels=bug&template=bug_report.yml")
1111
.into_hooks();
1212
panic_hook.install();
1313

0 commit comments

Comments
 (0)