Change folder aliases

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-01-22 21:14:37 +04:00
parent 4d80dccbbf
commit 3b4f77c5e8
274 changed files with 991 additions and 1017 deletions

View File

@@ -19,10 +19,10 @@ import { z } from "zod";
import { defaultPageSize,
SortableCellHead,
SortableDataTable,
} from "/components/table/SortableDataTable.tsx";
import { useMutateField } from "/hooks/useMutateField.tsx";
import { useMutationWithToasts } from "/hooks/useMutationWithToasts.ts";
import { useStateWithSchema } from "/hooks/useStateWithSchema.ts";
} from "#/components/table/SortableDataTable.tsx";
import { useMutateField } from "#/hooks/useMutateField.tsx";
import { useMutationWithToasts } from "#/hooks/useMutationWithToasts.ts";
import { useStateWithSchema } from "#/hooks/useStateWithSchema.ts";
type ColumnDefinition = { label: string; field: string } | string;

View File

@@ -1,8 +1,8 @@
import { Avatar } from "@probo/ui";
import type { PeopleGraphQuery } from "/__generated__/core/PeopleGraphQuery.graphql.ts";
import { GraphQLCell } from "/components/table/GraphQLCell.tsx";
import { peopleQuery } from "/hooks/graph/PeopleGraph.ts";
import type { PeopleGraphQuery } from "#/__generated__/core/PeopleGraphQuery.graphql.ts";
import { GraphQLCell } from "#/components/table/GraphQLCell.tsx";
import { peopleQuery } from "#/hooks/graph/PeopleGraph.ts";
type Props = {
name: string;

View File

@@ -1,9 +1,9 @@
import { faviconUrl } from "@probo/helpers";
import { Avatar, Badge, IconCrossLargeX } from "@probo/ui";
import type { VendorGraphSelectQuery } from "/__generated__/core/VendorGraphSelectQuery.graphql.ts";
import { GraphQLCell } from "/components/table/GraphQLCell";
import { vendorsSelectQuery } from "/hooks/graph/VendorGraph";
import type { VendorGraphSelectQuery } from "#/__generated__/core/VendorGraphSelectQuery.graphql.ts";
import { GraphQLCell } from "#/components/table/GraphQLCell";
import { vendorsSelectQuery } from "#/hooks/graph/VendorGraph";
type Vendor = {
id: string;