Skip to content

Commit

Permalink
refactor: 대소문자 수정 #442
Browse files Browse the repository at this point in the history
  • Loading branch information
rbgksqkr committed Dec 26, 2024
1 parent d800b8f commit 1dfbd15
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions frontend-admin/src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
import { RouterProvider } from "react-router-dom";
import { router } from "./router/index.tsx";
import { Global } from "@emotion/react";
import GlobalStyle from "./styles/GlobalStyle.ts";
import globalStyle from "./styles/globalStyle.ts";

const queryClient = new QueryClient();

Expand All @@ -22,7 +22,7 @@ enableMocking().then(() => {
createRoot(document.getElementById("root")!).render(
<StrictMode>
<QueryClientProvider client={queryClient}>
<Global styles={GlobalStyle} />
<Global styles={globalStyle} />
<RouterProvider router={router} />
</QueryClientProvider>
</StrictMode>
Expand Down
4 changes: 2 additions & 2 deletions frontend-admin/src/styles/GlobalStyle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ const reset = css`
}
`;

const GlobalStyle = css`
const globalStyle = css`
${reset}
html {
Expand All @@ -168,4 +168,4 @@ const GlobalStyle = css`
}
`;

export default GlobalStyle;
export default globalStyle;

0 comments on commit 1dfbd15

Please sign in to comment.