Remove extensions from import paths

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-01-22 21:43:49 +04:00
parent 4bdf941d3a
commit e143477d66
139 changed files with 293 additions and 293 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";
import { useMutateField } from "#/hooks/useMutateField";
import { useMutationWithToasts } from "#/hooks/useMutationWithToasts";
import { useStateWithSchema } from "#/hooks/useStateWithSchema";
type ColumnDefinition = { label: string; field: string } | string;

View File

@@ -1,9 +1,9 @@
import { useStateWithRef } from "@probo/hooks";
import { useTranslate } from "@probo/i18n";
import { EditableCell, selectCell, SelectValue, Spinner } from "@probo/ui";
import { useEditableCellRef } from "@probo/ui/src/Molecules/Table/EditableCell.tsx";
import { useEditableRowContext } from "@probo/ui/src/Molecules/Table/EditableRow.tsx";
import { getKey } from "@probo/ui/src/Molecules/Table/utils.ts";
import { useEditableCellRef } from "@probo/ui/src/Molecules/Table/EditableCell";
import { useEditableRowContext } from "@probo/ui/src/Molecules/Table/EditableRow";
import { getKey } from "@probo/ui/src/Molecules/Table/utils";
import { Command } from "cmdk";
import { type ReactNode, Suspense } from "react";
import { useLazyLoadQuery } from "react-relay";

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";
import { GraphQLCell } from "#/components/table/GraphQLCell";
import { peopleQuery } from "#/hooks/graph/PeopleGraph";
type Props = {
name: string;

View File

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