Skip to content

Commit

Permalink
refactor: Rename wrapper to EditorWrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
alimtunc committed Aug 28, 2023
1 parent ddfcd42 commit 520cdd6
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import ExpandMoreIcon from '@mui/icons-material/ExpandMore';
import { Box, IconButton, Stack, Typography } from '@mui/material';
import { grey } from '@mui/material/colors';

import EditorWrapper from 'components/organisms/playground/editor/wrapper';
import EditorWrapper from 'components/organisms/playground/editor/EditorWrapper';

import 'draft-js/dist/Draft.css';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { toast } from 'react-hot-toast';
import { useSetRecoilState } from 'recoil';
import { useIsFirstRender } from 'usehooks-ts';

import EditorWrapper from 'components/organisms/playground/editor/wrapper';
import EditorWrapper from 'components/organisms/playground/editor/EditorWrapper';

import { IPrompt } from 'state/chat';
import { modeState, variableState } from 'state/playground';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
import { useState } from 'react';
import { useIsFirstRender } from 'usehooks-ts';

import EditorWrapper from 'components/organisms/playground/editor/wrapper';
import EditorWrapper from 'components/organisms/playground/editor/EditorWrapper';

import { IPrompt } from 'state/chat';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import AccentButton from 'components/atoms/buttons/accentButton';

import { playgroundState, variableState } from 'state/playground';

import EditorWrapper from './wrapper';
import EditorWrapper from './EditorWrapper';

const VariableModal = (): JSX.Element | null => {
const [state, setState] = useState<EditorState | undefined>();
Expand Down

0 comments on commit 520cdd6

Please sign in to comment.