Skip to content

Commit 94a3efd

Browse files
committedJun 3, 2024
chore: ignore builds, add some links, bump submodule
1 parent 790be1e commit 94a3efd

File tree

6 files changed

+4
-67
lines changed

6 files changed

+4
-67
lines changed
 

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,5 @@ pnpm-debug.log*
2424
.idea/
2525

2626
.wrangler
27+
public/kaboom.js
28+
public/kaboom.js.map

‎kaplay

‎public/kaboom.js

-57
This file was deleted.

‎public/kaboom.js.map

-7
This file was deleted.

‎src/components/Editor/Editor.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { exampleList } from "@/components/Toolbar/examples";
21
import { useProject } from "@/hooks/useProject";
32
import { decompressCode } from "@/util/compressCode";
43
import { Editor, type Monaco } from "@monaco-editor/react";

‎src/components/Editor/monacoConfig.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export const configMonaco = (monaco: Monaco) => {
2828

2929
// Hover dataUrl images
3030
monaco.languages.registerHoverProvider("javascript", {
31-
provideHover(model, position, token) {
31+
provideHover(model, position) {
3232
const line = model.getLineContent(position.lineNumber);
3333
const dataUrisInLine = line.match(dataUrlRegex);
3434

0 commit comments

Comments
 (0)
Please sign in to comment.