Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
davidecarpini committed Oct 27, 2023
1 parent 1019587 commit 9260a0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ import {
import { LinkIcon, WalletIcon } from '@heroicons/react/24/solid';
import React, { useCallback, useState } from 'react';
import { Certificate } from 'thor-devkit';
import { useConnex, useWallet } from '../../ConnexProvider';
import { Dialog } from './Dialog';
import { WalletSourceRadio } from './WalletSourceRadio';
import { useConnex, useWallet } from '../../ConnexProvider';

interface ConnectedWalletDialogProps {
isOpen: boolean;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ interface SourceInfo {
logo: string;
}

const baseLogoUrl = `${process.env.PUBLIC_URL}/images/logo`;
const baseLogoUrl = `${process.env.PUBLIC_URL || ''}/images/logo`;

export const WalletSources: Record<WalletSource, SourceInfo> = {
[WalletSource.WalletConnect]: {
Expand Down

0 comments on commit 9260a0f

Please sign in to comment.