Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
SeungJL committed Jan 14, 2025
1 parent 45e4bdc commit 131cbfa
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions pageTemplates/layout/Layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/* eslint-disable @next/next/no-before-interactive-script-outside-document */

import { Global } from "@emotion/react";
import axios from "axios";
import { signOut, useSession } from "next-auth/react";
import dynamic from "next/dynamic";
Expand All @@ -14,7 +13,7 @@ import PageTracker from "../../components/layouts/PageTracker";
import { useToken } from "../../hooks/custom/CustomHooks";
import { useToast } from "../../hooks/custom/CustomToast";
import { parseUrlToSegments } from "../../utils/stringUtils";
import { detectDevice, iPhoneNotchSize } from "../../utils/validationUtils";
import { iPhoneNotchSize } from "../../utils/validationUtils";
import BaseModal from "./BaseModal";
import BaseScript from "./BaseScript";
import Seo from "./Seo";
Expand Down Expand Up @@ -124,15 +123,15 @@ function Layout({ children }: ILayout) {
<>
<Seo title="ABOUT" />
<GoogleAnalytics gaId={process.env.NEXT_PUBLIC_GA_MEASUREMENT_ID} />
{detectDevice() !== "PC" && (
{/* {detectDevice() !== "PC" && (
<Global
styles={{
"*:hover": {
background: "inherit !important",
},
}}
/>
)}
)} */}
{token && (
<>
<div
Expand Down

0 comments on commit 131cbfa

Please sign in to comment.