Skip to content

Commit

Permalink
Move scss import to layout component to fix styling reload issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbouder committed Jul 12, 2024
1 parent a285d27 commit fa98eec
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { Header } from "@components/header/header";
import { Metadata } from "next";
import QueryClientProvider from "@providers/query-client-provider";
import RecoilContextProvider from "@providers/recoil-context-provider";
import "./styles.scss";

export const metadata: Metadata = {
title: "Starter App - Next",
Expand Down
1 change: 0 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"use client";
import { Alert } from "@components/comet";
import "./styles.scss";
import useAuth from "@hooks/use-auth";
import { getDisplayName } from "@utils/auth";

Expand Down

0 comments on commit fa98eec

Please sign in to comment.