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() {
100100 const [ mintingMode , setMintingMode ] = useState < 'mint' | 'receive' > ( 'mint' ) ;
101101 const [ receiveAmount , setReceiveAmount ] = useState ( "" ) ;
102102 const [ calculatedMintAmount , setCalculatedMintAmount ] = useState < number > ( 0 ) ;
103- const [ isCalculatingMintAmount , setIsCalculatingMintAmount ] = useState < boolean > ( false ) ;
104103
105104 const [ tokenAddress , setTokenAddress ] = useState < `0x${string } `> ( "0x0" ) ;
106105 const [ chainId , setChainId ] = useState < SupportedChainId | null > ( null ) ;
@@ -195,7 +194,6 @@ export default function InteractionClient() {
195194 const [ isUserAdmin , setIsUserAdmin ] = useState < boolean > ( false ) ;
196195 const [ isUserMinter , setIsUserMinter ] = useState < boolean > ( false ) ;
197196 const [ userAmountAfterFees , setUserAmountAfterFees ] = useState < number > ( 0 ) ;
198- const [ isCalculatingFees , setIsCalculatingFees ] = useState < boolean > ( false ) ;
199197 const { writeContract : grantMinterRole , data : grantMinterRoleData } = useWriteContract ( ) ;
200198 const { writeContract : revokeMinterRole , data : revokeMinterRoleData } = useWriteContract ( ) ;
201199
You can’t perform that action at this time.
0 commit comments