Skip to content

Commit

Permalink
chore: apply lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bang9 committed Nov 25, 2024
1 parent 8f576f0 commit c6713da
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/messages/FormMessage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import { isFormVersionCompatible } from '@uikit/modules/GroupChannel/context/uti
import Button from '@uikit/ui/Button';

import FallbackUserMessage from './../FallbackUserMessage';
import FormInput from './FormInput';
import { widgetStringSet } from '../../../const';
import { useConstantState } from '../../../context/ConstantContext';
import { Label } from '../../../foundation/components/Label';
import FormInput from './FormInput';
import { AlertModal } from '../../ui/AlertModal';

interface Props {
Expand Down
2 changes: 1 addition & 1 deletion src/components/widget/ChatAiWidget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import ProviderContainer from './ProviderContainer';
import WidgetToggleButton from './WidgetToggleButton';
import WidgetWindow from './WidgetWindow';
import { type Constant, elementIds, WIDGET_WINDOW_Z_INDEX } from '../../const';
import { useConstantState } from '../../context/ConstantContext';
import { useWidgetState } from '../../context/WidgetStateContext';
import useMobileView from '../../hooks/useMobileView';
import { useWidgetAutoOpen } from '../../hooks/useWidgetAutoOpen';
import { isMobile } from '../../utils';
import Chat from '../chat';
import { useConstantState } from '../../context/ConstantContext';

const MobileContainer = styled.div<{ width: number }>`
position: fixed;
Expand Down
2 changes: 1 addition & 1 deletion src/components/widget/WidgetWindow.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import styled, { css } from 'styled-components';

import { elementIds, WIDGET_WINDOW_Z_INDEX } from '../../const';
import { useWidgetState } from '../../context/WidgetStateContext';
import { useConstantState } from '../../context/ConstantContext';
import { useWidgetState } from '../../context/WidgetStateContext';

const StyledWidgetWindowWrapper = styled.div<{
isOpen: boolean;
Expand Down

0 comments on commit c6713da

Please sign in to comment.