Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
alissacrane-cb committed Dec 20, 2024
1 parent d32c7ef commit a6e9e25
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/ui/react/internal/components/Tooltip.test.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { render, screen, fireEvent } from '@testing-library/react';
import { describe, it, expect } from 'vitest';
import { fireEvent, render, screen } from '@testing-library/react';
import { describe, expect, it } from 'vitest';
import { Tooltip } from './Tooltip';

describe('Tooltip', () => {
Expand Down
4 changes: 2 additions & 2 deletions src/ui/react/internal/components/Tooltip.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useCallback, useState } from 'react';
import { background, border, cn, text } from '@/styles/theme';
import { infoSvg } from '@/internal/svg/infoSvg';
import { background, border, cn, text } from '@/styles/theme';
import { useCallback, useState } from 'react';

type TooltipReact = {
children?: React.ReactNode;
Expand Down

0 comments on commit a6e9e25

Please sign in to comment.