Skip to content

Commit

Permalink
fix: remove useless aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
amje committed Jan 22, 2024
1 parent a7b38a7 commit 08232b2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';

import {block as block} from '../../../utils/cn';
import {block} from '../../../utils/cn';
import type {SelectProps} from '../../types';

import './EmptyOptions.scss';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';

import {TextInput} from '../../../controls';
import {block as block} from '../../../utils/cn';
import {block} from '../../../utils/cn';
import type {SelectProps} from '../../types';
import type {SelectFilterRef} from '../../types-misc';

Expand Down
2 changes: 1 addition & 1 deletion src/components/Select/components/SelectList/GroupLabel.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';

import {block as block} from '../../../utils/cn';
import {block} from '../../../utils/cn';
import type {GroupTitleItem} from '../../utils';

const b = block('select-list');
Expand Down
2 changes: 1 addition & 1 deletion src/components/Select/components/SelectList/OptionWrap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React from 'react';
import {Check} from '@gravity-ui/icons';

import {Icon} from '../../../Icon';
import {block as block} from '../../../utils/cn';
import {block} from '../../../utils/cn';
import type {SelectOption, SelectProps} from '../../types';

const b = block('select-list');
Expand Down

0 comments on commit 08232b2

Please sign in to comment.