mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
fixing @components imports
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { Account } from "@db/schema/Account";
|
||||
import { getData } from "../../actions/accountActions";
|
||||
import { getData } from "@actions/accountActions";
|
||||
|
||||
export default async function AccountsPage() {
|
||||
const data = await getData();
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { getData } from "../../actions/brandActions";
|
||||
import BrandsList from "../../components/Brand/BrandsList";
|
||||
import { getData } from "@actions/brandActions";
|
||||
import BrandsList from "@components/Brand/BrandsList";
|
||||
|
||||
export default async function BrandsPage() {
|
||||
const data = await getData();
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Button } from "src/components/ui/button";
|
||||
import { Button } from "@components/ui/button";
|
||||
|
||||
|
||||
export default function BuilderPage() {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Button } from "src/components/ui/button";
|
||||
import { Button } from "@components/ui/button";
|
||||
import { getPSA } from "@/db/queries/PSA";
|
||||
|
||||
export default async function LowerReceiverPage() {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Provider } from "../components/ui/provider"
|
||||
import { Provider } from "@components/ui/provider"
|
||||
import "../styles/globals.css";
|
||||
import Navbar from "@components/Navbar";
|
||||
import Footer from "@components/site/Footer";
|
||||
|
||||
Reference in New Issue
Block a user