Skip to content

Commit b40b920

Browse files
committed
fix: remove unnecessary comments in JsonBlock and DealsRoute components
1 parent 1adb9c1 commit b40b920

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/modules/JsonBlock.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ const JsonBlock = ({
2727
rawToCopy = children;
2828
}
2929
} catch {
30-
// If parsing fails, display as plain text
3130
return (
3231
<div className={`flex min-w-0 items-start gap-1 ${className}`}>
3332
<code className="min-w-0 overflow-x-auto text-sm whitespace-pre">

src/routes/$chainSlug/_layout/deal/$dealId.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ function useDealData(dealId: string, chainId: number) {
5656
}
5757

5858
function DealsRoute() {
59-
// Use useTabParam to sync tab index with URL (dealTab param, using tab label)
6059
const tabLabels = ['DETAILS', 'TASKS'];
6160
const [currentTab, setCurrentTab] = useTabParam('dealTab', tabLabels, 0);
6261
const { chainId, isConnected } = useUserStore();

0 commit comments

Comments
 (0)