diff --git a/.changeset/plain-maps-care.md b/.changeset/plain-maps-care.md
new file mode 100644
index 00000000000..b6884215e2c
--- /dev/null
+++ b/.changeset/plain-maps-care.md
@@ -0,0 +1,5 @@
+---
+"thirdweb": minor
+---
+
+Remove in-app wallet from default wallet list for bridge widgets"
diff --git a/packages/thirdweb/src/react/web/ui/Bridge/FundWallet.tsx b/packages/thirdweb/src/react/web/ui/Bridge/FundWallet.tsx
index 49ab3176391..b0c133a0619 100644
--- a/packages/thirdweb/src/react/web/ui/Bridge/FundWallet.tsx
+++ b/packages/thirdweb/src/react/web/ui/Bridge/FundWallet.tsx
@@ -15,6 +15,7 @@ import {
isAddress,
shortenAddress,
} from "../../../../utils/address.js";
+import { getDefaultWalletsForBridgeComponents } from "../../../../wallets/defaultWallets.js";
import { useCustomTheme } from "../../../core/design-system/CustomThemeProvider.js";
import {
fontSize,
@@ -299,6 +300,13 @@ export function FundWallet(props: FundWalletProps) {
theme={theme}
{...props.connectOptions}
autoConnect={false}
+ wallets={
+ props.connectOptions?.wallets ||
+ getDefaultWalletsForBridgeComponents({
+ appMetadata: props.connectOptions?.appMetadata,
+ chains: props.connectOptions?.chains,
+ })
+ }
/>
) : (
)}
diff --git a/packages/thirdweb/src/react/web/ui/Bridge/swap-widget/swap-ui.tsx b/packages/thirdweb/src/react/web/ui/Bridge/swap-widget/swap-ui.tsx
index 2e5bdf460d8..81f48aee741 100644
--- a/packages/thirdweb/src/react/web/ui/Bridge/swap-widget/swap-ui.tsx
+++ b/packages/thirdweb/src/react/web/ui/Bridge/swap-widget/swap-ui.tsx
@@ -11,6 +11,7 @@ import { getToken } from "../../../../../pay/convert/get-token.js";
import type { SupportedFiatCurrency } from "../../../../../pay/convert/type.js";
import { getAddress } from "../../../../../utils/address.js";
import { toTokens, toUnits } from "../../../../../utils/units.js";
+import { getDefaultWalletsForBridgeComponents } from "../../../../../wallets/defaultWallets.js";
import { useCustomTheme } from "../../../../core/design-system/CustomThemeProvider.js";
import {
fontSize,
@@ -456,6 +457,13 @@ export function SwapUI(props: SwapUIProps) {
}}
theme={props.theme}
{...props.connectOptions}
+ wallets={
+ props.connectOptions?.wallets ||
+ getDefaultWalletsForBridgeComponents({
+ appMetadata: props.connectOptions?.appMetadata,
+ chains: props.connectOptions?.chains,
+ })
+ }
/>
) : (