Skip to content

Commit b31a42a

Browse files
committed
fix images broken
1 parent 539784e commit b31a42a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/features/landing/sections/TutorialsCTA.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const people = [
5757
>
5858
<img
5959
class="videoPreview"
60-
src={tutorialPreview}
60+
src={tutorialPreview.src}
6161
alt="Learn more about the technology we are building on our YouTube channel"
6262
/>
6363
</a>
@@ -92,7 +92,7 @@ const people = [
9292
people.map((people) => (
9393
<a href={people.link} target="_blank" rel="noopener">
9494
<img
95-
src={people.image}
95+
src={people.image.src}
9696
style="width: var(--space-6x); height: var(--space-6x); border-radius: 50%"
9797
alt={people.name}
9898
/>

src/pages/user-guide/bridge.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ It takes about **2 minutes** (6 block confirmations on Scroll L1) before the tok
2929

3030
1. Click your wallet address at the top-right corner of the Bridge web app. The pop-up panel lists the most recent 3 transactions that you made in the Bridge app (see the image below).
3131

32-
<img src={bridgeTransactions} alt="A preview of the Bridge UI showing recent transactions." />
32+
<img src={bridgeTransactions.src} alt="A preview of the Bridge UI showing recent transactions." />
3333

3434
1. Click the transaction hash of the recent deposit. It will open the _Transaction Details_ page in a new tab. You can find the block number containing this transaction.
3535

36-
<img src={transactionDetails} alt="Viewing the transaction details and block number of bridging an asset." />
36+
<img src={transactionDetails.src} alt="Viewing the transaction details and block number of bridging an asset." />
3737

3838
1. You can then check the latest block height in the [Scroll L1 Block Explorer]('https://l1scan.scroll.io/'). If the difference between the latest block height and the block number in Step 2 is greater than 6, the deposited token should be funded in your Scroll L2 wallet.
3939

@@ -59,12 +59,12 @@ You can check the progress of withdrawal transactions as follows:
5959

6060
1. Click your wallet address at the top-right corner of the Bridge web app. The pop-up panel lists the most recent 3 transactions you made in the Bridge app (see the image below).
6161

62-
<img src={bridgeTransactions} alt="A preview of the Bridge UI showing recent transactions." />
62+
<img src={bridgeTransactions.src} alt="A preview of the Bridge UI showing recent transactions." />
6363

6464
1. Click the transaction hash of the recent withdrawal. It will open the Transaction Details page in a new tab. You can find the block number containing this transaction.
6565

6666
<img
67-
src={transactionDetailsWithdraw}
67+
src={transactionDetailsWithdraw.src}
6868
alt="Viewing the transaction details and block number of a widthdrawn asset."
6969
/>
7070

0 commit comments

Comments
 (0)