Skip to content

Commit

Permalink
Remove console statements & twMerge
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonMHasperhoven committed Feb 10, 2025
1 parent 22d6ce5 commit 81765b8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
3 changes: 0 additions & 3 deletions src/pages/inspect/tx/ui/tx-view-component/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,6 @@ export const TransactionViewComponent = ({
metadataFetcher: MetadataFetchFn;
}) => {
const { feeValueView, isLoading, error } = useFeeMetadata(txv, metadataFetcher);
console.log('TCL: error', error);
console.log('TCL: isLoading', isLoading);
console.log('TCL: feeValueView', feeValueView);

return (
<div className='flex flex-col gap-8'>
Expand Down
3 changes: 1 addition & 2 deletions src/pages/inspect/tx/ui/tx-view-component/utils/cn.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { type ClassValue, clsx } from 'clsx';
import { twMerge } from 'tailwind-merge';

export function cn(...inputs: ClassValue[]): string {
return twMerge(clsx(inputs));
return clsx(inputs);
}

0 comments on commit 81765b8

Please sign in to comment.