diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index 55f17e6320..39b0a4a6a6 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,6 +1,6 @@
{
"apps/cowswap-frontend": "1.76.2",
- "apps/explorer": "2.32.1",
+ "apps/explorer": "2.32.2",
"libs/permit-utils": "0.3.0",
"libs/widget-lib": "0.13.2",
"libs/widget-react": "0.9.0",
diff --git a/apps/cow-fi/tsconfig.json b/apps/cow-fi/tsconfig.json
index 3aa8833b14..bdc0b7d844 100644
--- a/apps/cow-fi/tsconfig.json
+++ b/apps/cow-fi/tsconfig.json
@@ -38,10 +38,7 @@
"name": "next"
}
],
- "types": [
- "jest",
- "node"
- ]
+ "types": ["jest", "node"]
},
"include": [
"**/*.ts",
@@ -53,10 +50,5 @@
"next-env.d.ts",
".next/types/**/*.ts"
],
- "exclude": [
- "node_modules",
- "jest.config.ts",
- "**/*.spec.ts",
- "**/*.test.ts"
- ]
+ "exclude": ["node_modules", "jest.config.ts", "**/*.spec.ts", "**/*.test.ts"]
}
diff --git a/apps/explorer/CHANGELOG.md b/apps/explorer/CHANGELOG.md
index 5fddf7702a..0e7cac3f3d 100644
--- a/apps/explorer/CHANGELOG.md
+++ b/apps/explorer/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog
+## [2.32.2](https://github.com/cowprotocol/cowswap/compare/explorer-v2.32.1...explorer-v2.32.2) (2024-07-10)
+
+
+### Bug Fixes
+
+* fix broken links in gnosis chain ([#4706](https://github.com/cowprotocol/cowswap/issues/4706)) ([af8172d](https://github.com/cowprotocol/cowswap/commit/af8172d3b2d97e3c7c1150a8237344e5182a310d))
+
## [2.32.1](https://github.com/cowprotocol/cowswap/compare/explorer-v2.32.0...explorer-v2.32.1) (2024-07-05)
diff --git a/apps/explorer/package.json b/apps/explorer/package.json
index cfaa67ccd2..59cd01bb1a 100644
--- a/apps/explorer/package.json
+++ b/apps/explorer/package.json
@@ -1,6 +1,6 @@
{
"name": "@cowprotocol/explorer",
- "version": "2.32.1",
+ "version": "2.32.2",
"description": "CoW Swap Explorer",
"main": "src/main.tsx",
"author": "",
diff --git a/apps/explorer/src/components/orders/DetailsTable/index.tsx b/apps/explorer/src/components/orders/DetailsTable/index.tsx
index a9c7d4f4ab..0e65dec8e4 100644
--- a/apps/explorer/src/components/orders/DetailsTable/index.tsx
+++ b/apps/explorer/src/components/orders/DetailsTable/index.tsx
@@ -29,6 +29,7 @@ import { Order } from 'api/operator'
import { getUiOrderType } from 'utils/getUiOrderType'
import { TAB_QUERY_PARAM_KEY } from '../../../explorer/const'
+import { Link } from 'react-router-dom'
const tooltip = {
orderID: 'A unique identifier ID for this order.',
@@ -201,12 +202,9 @@ export function DetailsTable(props: Props): React.ReactNode | null {
textToCopy={owner}
onCopy={(): void => onCopy('ownerAddress')}
contentsToDisplay={
-
+
{owner}↗
-
+
}
/>
@@ -228,12 +226,9 @@ export function DetailsTable(props: Props): React.ReactNode | null {
textToCopy={receiver}
onCopy={(): void => onCopy('receiverAddress')}
contentsToDisplay={
-
+
{receiver}↗
-
+
}
/>
@@ -259,12 +254,9 @@ export function DetailsTable(props: Props): React.ReactNode | null {
textToCopy={txHash}
onCopy={(): void => onCopy('settlementTx')}
contentsToDisplay={
-
+
{txHash}↗
-
+
}
/>