refactor: comment out debug log for render count in AppContent component

This commit is contained in:
Haileyesus
2026-01-31 15:59:43 +03:00
parent 438b9698cc
commit 312654fdc6

View File

@@ -48,7 +48,7 @@ function AppContent() {
const { t } = useTranslation('common');
// * This is a tracker for avoiding excessive re-renders during development
const renderCountRef = useRef(0);
console.log(`AppContent render count: ${renderCountRef.current++}`);
// console.log(`AppContent render count: ${renderCountRef.current++}`);
const { updateAvailable, latestVersion, currentVersion, releaseInfo } = useVersionCheck('siteboon', 'claudecodeui');
const [showVersionModal, setShowVersionModal] = useState(false);