1- import _ from 'lodash' ;
2- import styles from './styles/CreateStreamModal.module.css' ;
3- import { appStoreReducers , useAppStore } from '@/layouts/MainLayout/providers/AppProvider' ;
4- import { CreatableSelect } from '@/components/Misc/CreatableSelect' ;
5- import {
6- FC ,
7- useCallback ,
8- useEffect ,
9- useState
10- } from 'react' ;
11- import { GetInputPropsReturnType , UseFormReturnType } from 'node_modules/@mantine/form/lib/types' ;
12- import { IconInfoCircleFilled , IconPlus } from '@tabler/icons-react' ;
13- import { LogStreamSchemaData } from '@/@types/parseable/api/stream' ;
14- import { notifyError } from '@/utils/notification' ;
15- import { useForm } from '@mantine/form' ;
16- import { useLogStream } from '@/hooks/useLogStream' ;
171import {
182 ActionIcon ,
193 Box ,
@@ -34,7 +18,18 @@ import {
3418 ThemeIcon ,
3519 Tooltip ,
3620} from '@mantine/core' ;
21+ import { FC , useCallback , useEffect , useState } from 'react' ;
22+ import { GetInputPropsReturnType , UseFormReturnType } from 'node_modules/@mantine/form/lib/types' ;
23+ import { IconInfoCircleFilled , IconPlus } from '@tabler/icons-react' ;
24+ import { appStoreReducers , useAppStore } from '@/layouts/MainLayout/providers/AppProvider' ;
3725
26+ import { CreatableSelect } from '@/components/Misc/CreatableSelect' ;
27+ import { LogStreamSchemaData } from '@/@types/parseable/api/stream' ;
28+ import _ from 'lodash' ;
29+ import { notifyError } from '@/utils/notification' ;
30+ import styles from './styles/CreateStreamModal.module.css' ;
31+ import { useForm } from '@mantine/form' ;
32+ import { useLogStream } from '@/hooks/useLogStream' ;
3833
3934const { toggleCreateStreamModal } = appStoreReducers ;
4035
0 commit comments