Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
IzumiSy committed Jan 14, 2025
1 parent 57a6f26 commit 3234de5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions src/builder/Editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,18 @@ import {
Text,
HStack,
} from "@chakra-ui/react";

import { DocumentNode, parse } from "graphql";
import { CombinedError } from "urql";
import { useContext, useState, useMemo } from "react";
import * as R from "remeda";
import {
DrawerBackdrop,
DrawerBody,
DrawerContent,
DrawerHeader,
DrawerRoot,
} from "../components/ui/drawer";
import { DocumentNode, parse } from "graphql";
import { CombinedError } from "urql";
import { useContext, useState, useMemo } from "react";
import * as R from "remeda";
import FabrixIcon from "../icons/logo.svg?react";
import { FabrixBuilderContext } from "./context";
import { EditorPane } from "./panes/Editor";
Expand Down
2 changes: 1 addition & 1 deletion src/builder/panes/Preview.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { Tabs, Text, Flex } from "@chakra-ui/react";
import { Alert } from "../../components/ui/alert";
import { FabrixComponent } from "@fabrix-framework/fabrix";
import {
EditorContextProvider,
Expand All @@ -11,6 +10,7 @@ import { DocumentNode } from "graphql";
import { useContext } from "react";
import { ErrorBoundary } from "react-error-boundary";
import { CombinedError } from "urql";
import { Alert } from "../../components/ui/alert";
import { FabrixBuilderContext } from "../context";
import { baseFlexStyle } from "./shared";

Expand Down
2 changes: 1 addition & 1 deletion src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import ReactDOM from "react-dom/client";
import { css } from "@emotion/css";
import { Provider as ChakraProvider } from "./components/ui/provider.tsx";
import { ChakraUIRegistry } from "@fabrix-framework/chakra-ui";
import { Provider as ChakraProvider } from "./components/ui/provider.tsx";
import App from "./App.tsx";
import "./index.css";
import { FabrixBuilderProvider } from "./builder/context.tsx";
Expand Down

0 comments on commit 3234de5

Please sign in to comment.