Common Issues

1. Configuration Errors

Problem: Invalid configuration causing initialization failure Solution: Check the error log to know more about the error. Use the error function for more details.

2. Container Issues

Problem: SDK not rendering properly Solution:
// Ensure container exists and is visible
const container = document.getElementById('proview-client-container');
if (container) {
    container.style.display = 'block';
    container.style.minHeight = '400px';
}