Skip to content

Commit

Permalink
Update DerivationPath.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
kilavvy authored Feb 3, 2025
1 parent 26472b0 commit e331cef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/modal-ui/src/lib/components/DerivationPath.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ export const DerivationPath: React.FC<DerivationPathProps> = ({
const [customAccountId, setCustomAccountId] = useState("");
const [connecting, setConnecting] = useState(false);

const initalHeaderTitle = translate("modal.ledger.connectWithLedger");
const [headerTitle, setHeaderTitle] = useState(initalHeaderTitle);
const initialHeaderTitle = translate("modal.ledger.connectWithLedger");
const [headerTitle, setHeaderTitle] = useState(initialHeaderTitle);

const getAccountIds = async (publicKey: string): Promise<Array<string>> => {
const url = `${selector.options.network.indexerUrl}/public_key/ed25519:${publicKey}`;
Expand Down

0 comments on commit e331cef

Please sign in to comment.