💄 style: remove debug console logs and add loading state (#10314)

perf
This commit is contained in:
Arvin Xu
2025-11-20 00:32:33 +08:00
committed by GitHub
parent 83e0cea322
commit 094cdff097
2 changed files with 4 additions and 3 deletions
+3
View File
@@ -0,0 +1,3 @@
import Loading from '@/components/Loading/BrandTextLoading';
export default () => <Loading />;
+1 -3
View File
@@ -12,9 +12,7 @@ export default async (props: DynamicLayoutProps) => {
// Conditionally load and render based on device type
// Using native dynamic import ensures complete code splitting
// Mobile and Desktop bundles will be completely separate
console.log('isMobile', isMobile);
console.log('locale', locale);
if (isMobile) {
return <MobileRouter locale={locale} />;
}