Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
khanti42 committed Feb 13, 2025
1 parent 0b7c3f7 commit c359afe
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ interface Props {
}

export const AddAccountModalView = ({ closeModal }: Props) => {
const { addNewAccount, getNextAccountIndex } = useStarkNetSnap();
const { addNewAccount } = useStarkNetSnap();
const { translate } = useMultiLanguage();
const [enabled, setEnabled] = useState(false);
const networks = useAppSelector((state) => state.networks);
const accounts = useAppSelector((state) => state.wallet.accounts);
const chainId = networks?.items[networks.activeNetwork].chainId;
const [fields, setFields] = useState({
accountName: `Account ${accounts.length+1}`,
accountName: `Account ${accounts.length + 1}`,
});

const handleChange = (fieldName: string, fieldValue: string) => {
Expand Down

0 comments on commit c359afe

Please sign in to comment.