Skip to content

Commit

Permalink
fix: remove spurious log
Browse files Browse the repository at this point in the history
  • Loading branch information
ciaran- committed Sep 28, 2023
1 parent f5ffa15 commit f5985bf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/HealthBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ const Remainder = () => (
)

const getIntentBackground = (intent?: Intent) => {
console.log('background intent:', intent)
return {
'bg-neutral-200 dark:bg-neutral-800': intent === undefined,
'bg-black dark:bg-white': intent === Intent.None,
Expand Down Expand Up @@ -108,7 +107,7 @@ const AuctionTarget = ({
>
<div
className={classNames(
'health-target group-hover:scale-y-108 dashed-background w-0.5 group-hover:scale-x-150',
'health-target group-hover:scale-y-108 w-0.5 dashed-background group-hover:scale-x-150',
{
'h-6': !isLarge,
'h-12': isLarge,
Expand Down

0 comments on commit f5985bf

Please sign in to comment.