diff --git a/src/features/dashboard/components/Table/cell-scopes.tsx b/src/features/dashboard/components/Table/CellScopes.tsx similarity index 100% rename from src/features/dashboard/components/Table/cell-scopes.tsx rename to src/features/dashboard/components/Table/CellScopes.tsx diff --git a/src/features/dashboard/components/Table/__tests__/Table.test.tsx b/src/features/dashboard/components/Table/__tests__/Table.test.tsx index 1772507a..39c0c93d 100644 --- a/src/features/dashboard/components/Table/__tests__/Table.test.tsx +++ b/src/features/dashboard/components/Table/__tests__/Table.test.tsx @@ -7,7 +7,7 @@ import useDeleteToken from '../../../hooks/useDeleteToken'; import { TTokenColumn } from '../../api-token-table'; import ApiLastUsedCell from '../../api-token-table/cell-last-used'; import ApiTokenCell from '../../api-token-table/cell-token'; -import ScopesCell from '../cell-scopes'; +import ScopesCell from '../CellScopes'; import TokenActionsCell from '../../api-token-table/cell-delete-token'; jest.mock('../../../hooks/useDeleteToken'); diff --git a/src/features/dashboard/components/api-token-table/api-token-table.tsx b/src/features/dashboard/components/api-token-table/api-token-table.tsx index 18cdca08..db799326 100644 --- a/src/features/dashboard/components/api-token-table/api-token-table.tsx +++ b/src/features/dashboard/components/api-token-table/api-token-table.tsx @@ -8,7 +8,7 @@ import Spinner from '@site/src/components/Spinner'; import useApiToken from '@site/src/hooks/useApiToken'; import useDeviceType from '@site/src/hooks/useDeviceType'; import AccountSwitcher from '@site/src/components/AccountSwitcher'; -import ScopesCell from '../table/cell-scopes'; +import ScopesCell from '../table/CellScopes'; import Table from '../table'; import ApiTokenCell from './cell-token'; import ApiLastUsedCell from './cell-last-used'; diff --git a/src/features/dashboard/components/api-token-table/responsive-table.tsx b/src/features/dashboard/components/api-token-table/responsive-table.tsx index 30f80f21..5fbb3730 100644 --- a/src/features/dashboard/components/api-token-table/responsive-table.tsx +++ b/src/features/dashboard/components/api-token-table/responsive-table.tsx @@ -4,7 +4,7 @@ import { TTokenType } from '@site/src/types'; import TokenActionsCell from './cell-delete-token'; import AccountTypeCell from './cell-account-type'; import ApiLastUsedCell from './cell-last-used'; -import ScopesCell from '../table/cell-scopes'; +import ScopesCell from '../table/CellScopes'; type TResponsiveTableProps = { tokens: TTokenType[]; diff --git a/src/features/dashboard/components/apps-table/apps-table.tsx b/src/features/dashboard/components/apps-table/apps-table.tsx index 2d48c7a3..2f1ba626 100644 --- a/src/features/dashboard/components/apps-table/apps-table.tsx +++ b/src/features/dashboard/components/apps-table/apps-table.tsx @@ -26,7 +26,7 @@ import AppActionsCell from './app-actions.cell'; import './apps-table.scss'; import Translate, { translate } from '@docusaurus/Translate'; import CopyTextCell from '../table/cell-copy-text'; -import ScopesCell from '../table/cell-scopes'; +import ScopesCell from '../table/CellScopes'; export type TAppColumn = Column; diff --git a/src/features/dashboard/components/apps-table/responsive-table.tsx b/src/features/dashboard/components/apps-table/responsive-table.tsx index 8cc06791..c9228b40 100644 --- a/src/features/dashboard/components/apps-table/responsive-table.tsx +++ b/src/features/dashboard/components/apps-table/responsive-table.tsx @@ -5,7 +5,7 @@ import AppActionsCell from './app-actions.cell'; import clsx from 'clsx'; import CopyTextCell from '../table/cell-copy-text'; import './responsive-table.scss'; -import ScopesCell from '../table/cell-scopes'; +import ScopesCell from '../table/CellScopes'; type TResponsiveTableProps = { apps: ApplicationObject[];