Skip to content

Commit 81c071c

Browse files
committed
linting
1 parent d669d71 commit 81c071c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

explorer/src/pages/Tools.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { Layout } from '@/components/Layout';
22
import { Truncated } from '@/components/Truncated';
33
import { Textarea } from '@/components/ui/textarea';
4-
import { useMintGarden } from '@/hooks/useMintGarden';
54
import { parseJson } from '@/lib/json';
65
import {
76
ConditionArgType,
@@ -73,8 +72,6 @@ interface BundleViewerProps {
7372
}
7473

7574
function BundleViewer({ bundle }: BundleViewerProps) {
76-
const { fetchNft } = useMintGarden();
77-
7875
return (
7976
<div className='flex flex-col gap-2 mt-4'>
8077
{bundle.coinSpends.map((spend) => (
@@ -137,6 +134,7 @@ function SpendViewer({ spend }: SpendViewerProps) {
137134
<div className='flex flex-col gap-2'>
138135
<div className='text-sm text-muted-foreground'>Output Conditions</div>
139136
{spend.conditions.map((condition, index) => (
137+
// eslint-disable-next-line react/no-array-index-key -- immutable
140138
<ConditionViewer key={index} condition={condition} />
141139
))}
142140
</div>

0 commit comments

Comments
 (0)