(feat): updated calls

This commit is contained in:
Alois 2026-04-19 02:35:37 +02:00
commit ab36992bdd
15 changed files with 318 additions and 99 deletions

View file

@ -3,5 +3,5 @@ import { useCall } from "../context";
export default function Preview() {
const { currentCallData } = useCall();
return <div>Preview View {currentCallData?.someInfo}</div>;
return <div>Preview View {JSON.stringify(currentCallData?.users)}</div>;
}