diff --git a/src/pages/names/NameButtonRow.tsx b/src/pages/names/NameButtonRow.tsx
index d4ffe1f..3538f50 100644
--- a/src/pages/names/NameButtonRow.tsx
+++ b/src/pages/names/NameButtonRow.tsx
@@ -8,6 +8,7 @@
import { KristName } from "@api/types";
import { Wallet } from "@wallets";
+import { SendTransactionModalLink } from "@comp/transactions/SendTransactionModalLink";
interface Props {
name: KristName;
@@ -22,17 +23,21 @@
return <>
{/* Send/transfer Krist button */}
- {myWallet
- ? (
- } className="nyi">
- {t("name.buttonTransferKrist", { name: nameWithSuffix })}
-
- )
- : (
- } className="nyi">
- {t("name.buttonSendKrist", { name: nameWithSuffix })}
-
- )}
+
+
+ : }
+ >
+ {t(
+ myWallet
+ ? "name.buttonTransferKrist"
+ : "name.buttonSendKrist",
+ { name: nameWithSuffix }
+ )}
+
+
{/* If we're the name owner, show the management buttons */}
{/* Update A record button */}