Skip to content

Commit

Permalink
fix: debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
djpiper28 committed May 5, 2024
1 parent f6e6f94 commit 6091bd3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion game-source-redux/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@
import Counter from "./lib/Counter.svelte";
import KubeWebSocket from "./lib/websockets";
import { onMount } from 'svelte';
import { v4 } from 'uuid';
const width = 16;
const height = 16;
const cube_size = 100;
onMount(() => {
const ws = new KubeWebSocket("Danny");
const ws = new KubeWebSocket(v4());
ws.onError = (err) => {
console.error(err);
Expand Down

0 comments on commit 6091bd3

Please sign in to comment.