aboutsummaryrefslogtreecommitdiffstats
path: root/packages/forms/src/select
diff options
context:
space:
mode:
authorLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-07-30 01:48:45 +0000
committerLibravatar GitHub <noreply@github.com>2021-07-30 07:18:45 +0530
commitd60087cd90fc4ea5c14afbc16c9b938df3ad3974 (patch)
tree7e2fa3e763590b00b4f0f11cd67316ece899e81b /packages/forms/src/select
parentUpgraded 'electron-builder' to '22.11.10'. (diff)
downloadferdium-app-d60087cd90fc4ea5c14afbc16c9b938df3ad3974.tar.gz
ferdium-app-d60087cd90fc4ea5c14afbc16c9b938df3ad3974.tar.zst
ferdium-app-d60087cd90fc4ea5c14afbc16c9b938df3ad3974.zip
Within the packages, use relative paths for imports. (#1705)
Diffstat (limited to 'packages/forms/src/select')
-rw-r--r--packages/forms/src/select/index.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/forms/src/select/index.tsx b/packages/forms/src/select/index.tsx
index 6f153da6f..e5b59cb19 100644
--- a/packages/forms/src/select/index.tsx
+++ b/packages/forms/src/select/index.tsx
@@ -1,11 +1,11 @@
1import { mdiArrowRightDropCircleOutline, mdiCloseCircle, mdiMagnify } from '@mdi/js'; 1import { mdiArrowRightDropCircleOutline, mdiCloseCircle, mdiMagnify } from '@mdi/js';
2import Icon from '@mdi/react'; 2import Icon from '@mdi/react';
3import { Theme } from '@meetfranz/theme';
4import classnames from 'classnames'; 3import classnames from 'classnames';
5import React, { Component, createRef } from 'react'; 4import React, { Component, createRef } from 'react';
6import injectStyle from 'react-jss'; 5import injectStyle from 'react-jss';
7 6
8import { IFormField, IWithStyle } from '../typings/generic'; 7import { IFormField, IWithStyle } from '../typings/generic';
8import { Theme } from '../../../theme';
9 9
10import { Error } from '../error'; 10import { Error } from '../error';
11import { Label } from '../label'; 11import { Label } from '../label';