Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
fix: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
claustra01 committed Aug 10, 2024
1 parent d2dad24 commit 49e9b51
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/pages/home/index.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { useEffect, useState } from "react";
import { useNavigate } from "react-router-dom";
import HomePC from "../../components/responsive/homePC";
import HomeSP from "../../components/responsive/homeSP";
import { DefaultButton } from "../../components/ui/Button";
import { useSocketRefStore } from "../../store";
import { device } from "../../utils/device";
import { requestPermission } from "../../utils/permission";
import HomePC from "../../components/responsive/homePC";
import HomeSP from "../../components/responsive/homeSP";
import styles from "./index.module.css";

function Home() {
Expand All @@ -30,7 +30,6 @@ function Home() {
}, []);

return isPcScreen ? <HomePC /> : <HomeSP />;

}

export default Home;

0 comments on commit 49e9b51

Please sign in to comment.