Skip to content

Commit

Permalink
chore: fix weird imports
Browse files Browse the repository at this point in the history
  • Loading branch information
PalmDevs authored and PalmDevs committed Feb 25, 2024
1 parent 44867fc commit e65a7e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/ui/components/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { RedesignObj } from "@/def";
import { RedesignObj } from "@types";
import { ReactNative as RN } from "@metro/common";
import { findByDisplayName, findByName, findByProps } from "@metro/filters";

Expand Down
2 changes: 1 addition & 1 deletion src/ui/settings/components/Card.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ESCAPE_REGEX } from "@/lib/constants";
import { ESCAPE_REGEX } from "@lib/constants";
import { ReactNative as RN, stylesheet } from "@metro/common";
import { findByProps, findByStoreName } from "@metro/filters";
import { getAssetIDByName } from "@ui/assets";
Expand Down
2 changes: 1 addition & 1 deletion src/ui/settings/data.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import General from "@ui/settings/pages/General";
import Plugins from "@ui/settings/pages/Plugins";
import Themes from "@ui/settings/pages/Themes";
import Developer from "@ui/settings/pages/Developer";
import { PROXY_PREFIXES } from "@/lib/constants";
import { PROXY_PREFIXES } from "@lib/constants";

interface Screen {
[index: string]: any;
Expand Down

0 comments on commit e65a7e3

Please sign in to comment.