From 974fc460c4264d32f77f51a3be74cb1745ea1b10 Mon Sep 17 00:00:00 2001 From: Slava <20563034+veaceslavdoina@users.noreply.github.com> Date: Mon, 18 Dec 2023 16:38:16 +0200 Subject: [PATCH] Remove preview from MintCommand explorer link (#89) --- Tools/BiblioTech/Commands/MintCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/BiblioTech/Commands/MintCommand.cs b/Tools/BiblioTech/Commands/MintCommand.cs index aa2ccf6..5b328b7 100644 --- a/Tools/BiblioTech/Commands/MintCommand.cs +++ b/Tools/BiblioTech/Commands/MintCommand.cs @@ -83,7 +83,7 @@ namespace BiblioTech.Commands private string FormatTransactionLink(string transaction) { var url = $"https://explorer.testnet.codex.storage/tx/{transaction}"; - return $"- [View on block explorer]({url}){Environment.NewLine}Transaction ID - `{transaction}`"; + return $"- [View on block explorer](<{url}>){Environment.NewLine}Transaction ID - `{transaction}`"; } } }