Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton-Mushnin committed Dec 19, 2023
1 parent 2ccec1f commit 31268e9
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions web/src/components/layout/PlayingLayout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React, { ReactNode } from "react";
import Navbar from "./Navbar";
import { Flex } from "@chakra-ui/react";

import Navbar from "./Navbar";
import { FULLCOUNT_ASSETS_PATH } from "../../constants";

const sounds = {
Expand All @@ -24,7 +25,6 @@ const PlayingLayout = ({ children }: { children: ReactNode }) => {
maxW={"1440px"}
placeSelf={"center"}
w={"100%"}
// bg={"#111133"}
>
<Navbar />
<audio id="heartbeat" src={sounds.heartbeat} preload={"auto"} />
Expand All @@ -35,7 +35,6 @@ const PlayingLayout = ({ children }: { children: ReactNode }) => {
<audio id="clapping" src={sounds.clapping} preload={"auto"} />
<audio id="catch" src={sounds.catch} preload={"auto"} />
<audio id="selectSound" src={sounds.select} preload={"auto"}></audio>

{children}
</Flex>
);
Expand Down

0 comments on commit 31268e9

Please sign in to comment.