Skip to content

Commit

Permalink
fix(top-up-balance-button): remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
leineveber committed Feb 6, 2023
1 parent b337d0f commit 2bb6fa0
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ export const TopUpBalanceButton: React.FC<{ onClick: () => void }> = ({ onClick
const { t } = useTranslation();
const { theme } = useAppSelector((state) => state.theme);

console.log(theme);

return (
<S.TopUpButton type={theme === 'dark' ? 'ghost' : 'primary'} block onClick={onClick}>
{t('nft.topUpBalance')}
Expand Down

0 comments on commit 2bb6fa0

Please sign in to comment.