Skip to content

Commit

Permalink
fix eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
RealDyllon committed Feb 27, 2023
1 parent 94e4f4b commit 6978c2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { ReactQueryDevtools } from '@tanstack/react-query-devtools'
import Routes from "./routes";
import chakraTheme from "./config/theme";
import { CartProvider } from "./context/cart";
import {CheckoutProvider} from "./context/checkout";
import { CheckoutProvider } from "./context/checkout";

const queryClient = new QueryClient({ defaultOptions: { queries: { refetchOnWindowFocus: false } } });

Expand Down
2 changes: 1 addition & 1 deletion src/context/checkout/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useContext, useMemo, useState} from "react";
import React, { useContext, useMemo, useState } from "react";
import { CheckoutResponseDto } from "../../typings/cart";

type ContextType = {
Expand Down

0 comments on commit 6978c2c

Please sign in to comment.