feat(ocr): add whitelist presets and improve UI for OCR tool
refactor: format code and improve mobile menu accessibility style: fix whitespace and formatting in multiple files docs: update documentation with better formatting and examples
This commit is contained in:
@@ -21,7 +21,9 @@ const hideBrandingSections = () => {
|
||||
featuresSection.style.display = 'none';
|
||||
}
|
||||
|
||||
const securitySection = document.getElementById('security-compliance-section');
|
||||
const securitySection = document.getElementById(
|
||||
'security-compliance-section'
|
||||
);
|
||||
if (securitySection) {
|
||||
securitySection.style.display = 'none';
|
||||
}
|
||||
@@ -47,7 +49,7 @@ const hideBrandingSections = () => {
|
||||
}
|
||||
|
||||
const sectionDividers = document.querySelectorAll('.section-divider');
|
||||
sectionDividers.forEach(divider => {
|
||||
sectionDividers.forEach((divider) => {
|
||||
(divider as HTMLElement).style.display = 'none';
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user