File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,6 @@ export default function InteractionClient() {
100
100
const [ mintingMode , setMintingMode ] = useState < 'mint' | 'receive' > ( 'mint' ) ;
101
101
const [ receiveAmount , setReceiveAmount ] = useState ( "" ) ;
102
102
const [ calculatedMintAmount , setCalculatedMintAmount ] = useState < number > ( 0 ) ;
103
- const [ isCalculatingMintAmount , setIsCalculatingMintAmount ] = useState < boolean > ( false ) ;
104
103
105
104
const [ tokenAddress , setTokenAddress ] = useState < `0x${string } `> ( "0x0" ) ;
106
105
const [ chainId , setChainId ] = useState < SupportedChainId | null > ( null ) ;
@@ -195,7 +194,6 @@ export default function InteractionClient() {
195
194
const [ isUserAdmin , setIsUserAdmin ] = useState < boolean > ( false ) ;
196
195
const [ isUserMinter , setIsUserMinter ] = useState < boolean > ( false ) ;
197
196
const [ userAmountAfterFees , setUserAmountAfterFees ] = useState < number > ( 0 ) ;
198
- const [ isCalculatingFees , setIsCalculatingFees ] = useState < boolean > ( false ) ;
199
197
const { writeContract : grantMinterRole , data : grantMinterRoleData } = useWriteContract ( ) ;
200
198
const { writeContract : revokeMinterRole , data : revokeMinterRoleData } = useWriteContract ( ) ;
201
199
You can’t perform that action at this time.
0 commit comments