Skip to content

Commit

Permalink
fix: imports
Browse files Browse the repository at this point in the history
  • Loading branch information
scopsy committed Dec 16, 2024
1 parent b842f4f commit 3b5f586
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .source
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Badge } from '@/components/primitives/badge';
import { Button } from '@/components/primitives/button';
import { cn } from '@/lib/utils';
import { RiCheckboxCircleFill, RiGitBranchFill, RiSettings4Line, RiStarSmileLine } from 'react-icons/ri';
import { ITableIntegration } from '../types';
import type { IEnvironment, IIntegration, IProviderConfig } from '@novu/shared';
Expand All @@ -9,6 +8,7 @@ import { ROUTES } from '@/utils/routes';
import { Tooltip, TooltipContent, TooltipTrigger } from '@/components/primitives/tooltip';
import { ProviderIcon } from './provider-icon';
import { isDemoIntegration } from '../utils/is-demo-integration';
import { cn } from '../../../utils/ui';

interface IntegrationCardProps {
integration: IIntegration;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { cn } from '@/lib/utils';
import { cn } from '../../../utils/ui';

interface ProviderIconProps {
providerId: string;
Expand Down

0 comments on commit 3b5f586

Please sign in to comment.