TypeScript suggestion for line 48 in FaucetContent.tsx:
const turnstileRef = useRef<any>(null);
Consider typing it more strictly:
const turnstileRef = useRef<{ reset: () => void } | null>(null);
Ref https://github.com/helios-network/helios-testnet-react/blob/57dd6414f17bea6980eea36aa869f8cfb41c3dcb/src/app/faucet/FaucetContent.tsx#L48