Skip to content

Commit

Permalink
chore: fixed transaction url
Browse files Browse the repository at this point in the history
  • Loading branch information
petertonysmith94 committed Dec 31, 2024
1 parent ae3cb8d commit 8390b7b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/create-fuels-counter-guide/src/lib.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const renderTransactionId = (transactionId: string) => {

return (
<a
href={`https://app.fuel.network/tx/${transactionId}/simple`}
href={`https://app-testnet.fuel.network/tx/${transactionId}/simple`}
target="_blank"
rel="noreferrer"
className="underline"
Expand Down
2 changes: 1 addition & 1 deletion templates/nextjs/src/lib.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const renderTransactionId = (transactionId: string) => {

return (
<a
href={`https://app.fuel.network/tx/${transactionId}/simple`}
href={`https://app-testnet.fuel.network/tx/${transactionId}/simple`}
target="_blank"
rel="noreferrer"
className="underline"
Expand Down
2 changes: 1 addition & 1 deletion templates/vite/src/lib.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const renderTransactionId = (transactionId: string) => {

return (
<a
href={`https://app.fuel.network/tx/${transactionId}/simple`}
href={`https://app-testnet.fuel.network/tx/${transactionId}/simple`}
target="_blank"
rel="noreferrer"
className="underline"
Expand Down

0 comments on commit 8390b7b

Please sign in to comment.