Skip to content

Commit 28fb962

Browse files
refactor: update wallet names
1 parent 3d12dfd commit 28fb962

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/components/Modal/SelectWalletModal/ConnectSui.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const ConnectSui: FC<{
1111
goBack={goBack}
1212
closeModal={closeModal}
1313
WalletIcon={SuiIcon}
14-
title="Sui"
14+
title="Sui Wallets"
1515
subTitle="Connect by choosing one of the available wallets."
1616
>
1717
<SuiWalletList closeModal={closeModal} />

src/components/Modal/SelectWalletModal/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ const baseWalletOptions: WalletOption[] = [
8282
},
8383
{
8484
id: WalletType.Sui,
85-
title: "Sui",
85+
title: "Sui Wallets",
8686
icon: {
8787
light: SuiIcon,
8888
dark: SuiIcon,

src/contexts/StarknetWalletProvider.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ export const StarknetWalletProvider: React.FC<StarknetWalletProviderProps> = ({
196196
// Use starknetkit's connect with modal and custom dApp name
197197
const result = await connect({
198198
modalMode: "alwaysAsk",
199-
dappName: "StarkNet",
199+
dappName: "Starknet",
200200
modalTheme: "dark",
201201
})
202202

@@ -371,7 +371,7 @@ export const StarknetWalletProvider: React.FC<StarknetWalletProviderProps> = ({
371371
getStarknetKit().then(({ connect }) => {
372372
connect({
373373
modalMode: "neverAsk",
374-
dappName: "StarkNet",
374+
dappName: "Starknet",
375375
modalTheme: "dark",
376376
})
377377
.then((result: any) => {

src/types/wallet.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { FC } from "react"
22
import { WalletType } from "../enums"
33

44
export interface WalletOption {
5-
id: WalletType
5+
id: WalletType | "Starknet"
66
title: string
77
icon: {
88
light: FC

0 commit comments

Comments
 (0)