Skip to content

Commit bd34d64

Browse files
committed
remove console on playground ( temporary )
1 parent 5598dd3 commit bd34d64

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

packages/website/app/play/client.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { useState } from "react";
44
import { SupportedTemplates, TEMPLATES, SUPPORTED_TEMPLATES } from "@frontend-challenges/shared";
55

66
import Preview from "../../components/editor/Preview";
7-
import Console from "../../components/editor/Console";
87
import { SharePlaygroundButton } from "./SharePlaygroundButton";
98
import { CodeEditor } from "../../components/editor/CodeEditor";
109
import SandpackRoot from "../../components/editor/SandpackRoot";
@@ -116,8 +115,6 @@ export default function Client() {
116115
<ResizablePanel defaultSizePercentage={100}>
117116
<Preview template={template} />
118117
</ResizablePanel>
119-
<ResizableHandle className="hidden data-[panel-group-direction=vertical]:h-2 sm:block" />
120-
<Console />
121118
</ResizablePanelGroup>
122119
</ResizablePanel>
123120
</ResizablePanelGroup>

packages/website/hooks/useInitializeFilters.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ export function useInitializeFilters(scope: string, filters: Partial<ChallengeFi
2727
?.split(",")
2828
.filter((d) => DIFFICULTY_RANK.includes(d as Difficulty)) ?? undefined;
2929

30-
console.log({ difficultyFromURL, searchParams: searchParams.get("difficulty") });
3130
useEffect(() => {
3231
const category = categoryFromURL || getSessionStorageItem(`${STORAGE_KEY}:${scope}:category`, []);
3332
const difficulty = difficultyFromURL || getSessionStorageItem(`${STORAGE_KEY}:${scope}:difficulty`, []);

0 commit comments

Comments
 (0)