diff --git a/.changeset/happy-mayflies-destroy.md b/.changeset/happy-mayflies-destroy.md
deleted file mode 100644
index 99c81e29ed..0000000000
--- a/.changeset/happy-mayflies-destroy.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@penumbra-zone/ui': minor
----
-
-Add `AssetSelector` UI component
diff --git a/.changeset/hungry-yaks-carry.md b/.changeset/hungry-yaks-carry.md
deleted file mode 100644
index 0ddc1ae3b9..0000000000
--- a/.changeset/hungry-yaks-carry.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-'@penumbra-zone/storage': patch
-'minifront': patch
----
-
-Bump registry version to v11.2
diff --git a/.changeset/quick-buckets-deny.md b/.changeset/quick-buckets-deny.md
deleted file mode 100644
index 29aac8d3f3..0000000000
--- a/.changeset/quick-buckets-deny.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@penumbra-zone/ui': minor
----
-
-Add `SwapInput` and `ValueInput` UI components
diff --git a/.changeset/three-suns-complain.md b/.changeset/three-suns-complain.md
deleted file mode 100644
index 9d455e5db8..0000000000
--- a/.changeset/three-suns-complain.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'minifront': patch
----
-
-Render the error in swap page in case of incorrect decimals or insufficient funds
diff --git a/apps/minifront/CHANGELOG.md b/apps/minifront/CHANGELOG.md
index a678aa5529..b13d49aba0 100644
--- a/apps/minifront/CHANGELOG.md
+++ b/apps/minifront/CHANGELOG.md
@@ -1,5 +1,33 @@
# minifront
+## 6.22.2
+
+### Patch Changes
+
+- Updated dependencies [b6e32f8]
+- Updated dependencies [b6e32f8]
+- Updated dependencies [b6e32f8]
+ - @penumbra-zone/protobuf@6.1.0
+ - @penumbra-zone/bech32m@8.0.0
+ - @penumbra-zone/types@24.0.0
+ - @penumbra-zone/client@19.0.0
+ - @penumbra-zone/getters@18.0.0
+ - @penumbra-zone/perspective@31.0.0
+ - @penumbra-zone/ui@10.0.0
+ - @penumbra-zone/crypto-web@25.0.0
+
+## 6.22.1
+
+### Patch Changes
+
+- f9b8c07: Bump registry version to v11.2
+- e5c76a6: Render the error in swap page in case of incorrect decimals or insufficient funds
+- Updated dependencies [b1d4b7d]
+- Updated dependencies [75ef4f5]
+- Updated dependencies [de9bd06]
+- Updated dependencies [43d8350]
+ - @penumbra-zone/ui@9.2.0
+
## 6.22.0
### Minor Changes
diff --git a/apps/minifront/package.json b/apps/minifront/package.json
index e814da068d..bc61e44ed6 100644
--- a/apps/minifront/package.json
+++ b/apps/minifront/package.json
@@ -1,6 +1,6 @@
{
"name": "minifront",
- "version": "6.22.0",
+ "version": "6.22.2",
"private": true,
"license": "(MIT OR Apache-2.0)",
"type": "module",
@@ -22,7 +22,7 @@
"@cosmos-kit/core": "^2.13.1",
"@cosmos-kit/react": "^2.18.0",
"@interchain-ui/react": "^1.23.29",
- "@penumbra-labs/registry": "^11.2.0",
+ "@penumbra-labs/registry": "^11.3.1",
"@penumbra-zone/bech32m": "workspace:*",
"@penumbra-zone/client": "workspace:*",
"@penumbra-zone/crypto-web": "workspace:*",
diff --git a/apps/minifront/src/components/ibc/ibc-in/ibc-in-request.tsx b/apps/minifront/src/components/ibc/ibc-in/ibc-in-request.tsx
index c81829770b..aef1ba0d0b 100644
--- a/apps/minifront/src/components/ibc/ibc-in/ibc-in-request.tsx
+++ b/apps/minifront/src/components/ibc/ibc-in/ibc-in-request.tsx
@@ -47,23 +47,21 @@ export const IbcInRequest = () => {
)}
diff --git a/apps/minifront/src/components/ibc/ibc-out/chain-selector.tsx b/apps/minifront/src/components/ibc/ibc-out/chain-selector.tsx
index 34fd2463fc..5b75ff3937 100644
--- a/apps/minifront/src/components/ibc/ibc-out/chain-selector.tsx
+++ b/apps/minifront/src/components/ibc/ibc-out/chain-selector.tsx
@@ -6,7 +6,6 @@ import {
SelectValue,
} from '@penumbra-zone/ui/components/ui/select';
import { cn } from '@penumbra-zone/ui/lib/utils';
-import { useState } from 'react';
import { AllSlices } from '../../../state';
import { Chain } from '@penumbra-labs/registry';
import { useStoreShallow } from '../../../utils/use-store-shallow';
@@ -20,7 +19,6 @@ const chainSelectorSelector = (state: AllSlices) => ({
export const ChainSelector = () => {
const { chain, setChain } = useStoreShallow(chainSelectorSelector);
const chains = useChains();
- const [openSelect, setOpenSelect] = useState(false);
return (
@@ -28,10 +26,8 @@ export const ChainSelector = () => {