diff --git a/src/app/components/mint-unmint/components/walkthrough/walkthrough.tsx b/src/app/components/mint-unmint/components/walkthrough/walkthrough.tsx
index ca117250..1f419286 100644
--- a/src/app/components/mint-unmint/components/walkthrough/walkthrough.tsx
+++ b/src/app/components/mint-unmint/components/walkthrough/walkthrough.tsx
@@ -1,8 +1,10 @@
import { Button, HStack, Image, Link, Text } from "@chakra-ui/react";
import { TutorialVideo } from "@components/tutorial-video/tutorial-video";
+import { BlockchainContext } from "../../../../providers/blockchain-context-provider";
import { WalkthroughHeader } from "./components/walkthrough-header";
import { WalkthroughLayout } from "./components/walkthrough.layout";
+import { useContext } from "react";
interface WalkthroughProps {
flow: "mint" | "unmint";
@@ -13,6 +15,9 @@ export function Walkthrough({
flow,
currentStep,
}: WalkthroughProps): React.JSX.Element {
+ const blockchainContext = useContext(BlockchainContext);
+ const ethereum = blockchainContext?.ethereum;
+
switch (flow) {
case "mint":
switch (currentStep) {
@@ -93,7 +98,10 @@ export function Walkthrough({
simply add them
to your Ethereum Wallet.
-