perf(bundle): replace broad storage and utils imports

This commit is contained in:
2026-07-14 18:13:55 +08:00
parent e270be9bd9
commit 0033625866
85 changed files with 136 additions and 97 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ import { ROUTES } from "@/router/routes";
import { useAppNavigator } from "@/router/use-app-navigator";
import { AuthBackground, AuthPanel } from "./components";
import { Logger } from "@/utils";
import { Logger } from "@/utils/logger";
const log = new Logger("AppAuthAuthScreen");
@@ -3,7 +3,7 @@ import type { ReactNode } from "react";
import { MdEmail } from "react-icons/md";
import { BottomSheet } from "@/app/_components/core/bottom-sheet";
import { AppEnvUtil } from "@/utils";
import { AppEnvUtil } from "@/utils/app-env";
import { AuthProviderIcon } from "./auth-provider-icon";
import { AuthSocialButton } from "./auth-social-button";
+2 -1
View File
@@ -13,7 +13,8 @@ import {
import { AuthTextField } from "./auth-text-field";
import { AuthPrimaryButton } from "./auth-primary-button";
import { AuthErrorMessage } from "./auth-error-message";
import { AppEnvUtil, Logger } from "@/utils";
import { AppEnvUtil } from "@/utils/app-env";
import { Logger } from "@/utils/logger";
const log = new Logger("AppAuthComponentsEmailLoginForm");
const NON_PRODUCTION_DEFAULT_EMAIL = "chanwillian0@gmail.com";
@@ -24,7 +24,7 @@ import {
import { AuthTextField } from "./auth-text-field";
import { AuthPrimaryButton } from "./auth-primary-button";
import { AuthErrorMessage } from "./auth-error-message";
import { Logger } from "@/utils";
import { Logger } from "@/utils/logger";
const log = new Logger("AppAuthComponentsEmailRegisterForm");