Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Copyable.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Copy } from '@phosphor-icons/react';
import { useState } from 'react';
import Tooltip from './Tooltip';
import { Tooltip } from '@internxt/ui';
import { copyTextToClipboard } from 'utils/copyToClipboard.utils';

interface CopyableProps {
Expand Down
102 changes: 0 additions & 102 deletions src/components/Tooltip.tsx

This file was deleted.

2 changes: 1 addition & 1 deletion src/components/UsageDetails.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useTranslationContext } from 'app/i18n/provider/TranslationProvider';
import { useEffect, useRef, useState } from 'react';
import { bytesToString } from 'app/drive/services/size.service';
import Tooltip from './Tooltip';
import { Tooltip } from '@internxt/ui';
import { RootState } from 'app/store';
import { useAppSelector } from 'app/store/hooks';

Expand Down
1 change: 0 additions & 1 deletion src/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ export { ScrollableTable } from './ScrollableTable';
export { default as Sidenav } from './SidenavWrapper';
export { skinSkeleton } from './Skeleton';
export { default as TextInput } from './TextInput';
export { default as Tooltip } from './Tooltip';
export { default as TooltipElement, DELAY_SHOW_MS } from './TooltipElement';
export { Tutorial } from './Tutorial';
export type { Step } from './Tutorial';
Expand Down
2 changes: 1 addition & 1 deletion src/views/NewSettings/components/Usage/UsageBar.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useEffect, useRef, useState } from 'react';
import { bytesToString } from 'app/drive/services/size.service';
import Tooltip from 'components/Tooltip';
import { Tooltip } from '@internxt/ui';

const UsageBar = ({
backupsUsage,
Expand Down
Loading