Spaces:
Runtime error
Runtime error
remove logs
Browse files
frontend/src/lib/App.svelte
CHANGED
|
@@ -49,7 +49,6 @@
|
|
| 49 |
}
|
| 50 |
function canPaint(position: { x: number; y: number }): boolean {
|
| 51 |
if (!$others) return true;
|
| 52 |
-
console.log('P', position);
|
| 53 |
let canPaint = true;
|
| 54 |
for (const { presence } of $others) {
|
| 55 |
if (
|
|
|
|
| 49 |
}
|
| 50 |
function canPaint(position: { x: number; y: number }): boolean {
|
| 51 |
if (!$others) return true;
|
|
|
|
| 52 |
let canPaint = true;
|
| 53 |
for (const { presence } of $others) {
|
| 54 |
if (
|
frontend/src/lib/PromptModal.svelte
CHANGED
|
@@ -15,7 +15,6 @@
|
|
| 15 |
const onKeyup = (e: KeyboardEvent) => {
|
| 16 |
if (e.key === 'Escape') {
|
| 17 |
dispatch('showModal', { showModal: false });
|
| 18 |
-
console.log('Escape');
|
| 19 |
}
|
| 20 |
};
|
| 21 |
|
|
|
|
| 15 |
const onKeyup = (e: KeyboardEvent) => {
|
| 16 |
if (e.key === 'Escape') {
|
| 17 |
dispatch('showModal', { showModal: false });
|
|
|
|
| 18 |
}
|
| 19 |
};
|
| 20 |
|