Skip to content

Commit

Permalink
remove console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
matias-lg committed Nov 11, 2023
1 parent 2ea1f13 commit 46a9b18
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/app/api/examples/[example]/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export async function GET(
{ params }: { params: { example: string } },
) {
const exampleFilename = params.example + ".json";
console.log(process.cwd());
try {
const data = await fs.readFile(
process.cwd() + EXAMPLES_JSON_DIR + exampleFilename,
Expand Down
1 change: 0 additions & 1 deletion src/app/components/CodeEditor/CodeEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ const CodeEditor = ({
monacoInstance: ReturnType<typeof useMonaco>,
) => {
if (!editorRef.current) return;
console.log("Setting editor errors", errorMessages);

const errors: editor.IMarkerData[] = errorMessages.map((err) => ({
startLineNumber: err.location.start.line,
Expand Down

0 comments on commit 46a9b18

Please sign in to comment.