From 105e8cd139080d2635c7a33aabc8d3607b1fcb5c Mon Sep 17 00:00:00 2001 From: Claas Date: Sun, 7 Dec 2025 22:16:06 +0100 Subject: [PATCH] Fix import --- app/src/index.tsx | 2 +- app/src/routes/join.tsx | 1 + core/src/v2/serializable.rs | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/app/src/index.tsx b/app/src/index.tsx index e47e8ff..815f69d 100644 --- a/app/src/index.tsx +++ b/app/src/index.tsx @@ -2,7 +2,7 @@ import { render } from "solid-js/web"; import { Show } from "solid-js"; import { Route, Router } from "@solidjs/router"; -import Index from "./routes/index"; +import Index from "./routes/index.tsx"; import "./index.css"; import { AppContextProvider } from "./components/AppContext"; diff --git a/app/src/routes/join.tsx b/app/src/routes/join.tsx index 476bb8d..3a8abdd 100644 --- a/app/src/routes/join.tsx +++ b/app/src/routes/join.tsx @@ -67,6 +67,7 @@ export default function Join() { return ( <>

Invitation

+ Back diff --git a/core/src/v2/serializable.rs b/core/src/v2/serializable.rs index 0ecf631..a007b4f 100644 --- a/core/src/v2/serializable.rs +++ b/core/src/v2/serializable.rs @@ -129,6 +129,7 @@ impl Client { } pub fn from_serialized(bytes: &[u8]) -> Result { + console_error_panic_hook::set_once(); Ok(postcard::from_bytes(bytes)?) } -- 2.51.2