From ab55a96facdd55051cd4de9f233a2531891339cf Mon Sep 17 00:00:00 2001 From: Bas van den Aakster Date: Mon, 8 Dec 2025 21:37:03 +0100 Subject: [PATCH] fix: add missing ServiceHost and ServiceClient imports - Import ServiceHost and ServiceClient from @xtr-dev/rondevu-client - Fixes ReferenceError when starting hosting --- src/App.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.jsx b/src/App.jsx index 15f19da..1dae71f 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,5 +1,5 @@ import React, { useState, useEffect, useRef } from 'react' -import { RondevuService, ServiceHost, ServiceClient } from '@xtr-dev/rondevu-client' +import { RondevuService, RondevuSignaler, WebRTCContext, RTCDurableConnection, ServiceHost, ServiceClient } from '@xtr-dev/rondevu-client' import toast, { Toaster } from 'react-hot-toast' const API_URL = 'https://api.ronde.vu'