(chore): update codebase

This commit is contained in:
Alois 2026-05-01 19:57:03 +02:00
commit 4e8d46b20e
106 changed files with 29936 additions and 1023 deletions

View file

@ -86,7 +86,11 @@ export default function Navbar({ forMobile }: { forMobile: boolean }) {
<Button
disabled={callState !== "closed"}
onClick={() => {
void joinCall(id, currentCalls[0].secret, currentCalls[0].id);
void joinCall(
id,
currentCalls[0].call_secret,
currentCalls[0].call_id,
);
}}
className="w-9 h-9 aspect-square rounded-lg"
>
@ -105,13 +109,13 @@ export default function Navbar({ forMobile }: { forMobile: boolean }) {
<SelectContent>
{currentCalls.map((call) => (
<SelectItem
value={call.id}
key={call.id}
value={call.call_id}
key={call.call_id}
onSelect={() => {
void joinCall(id, call.secret, call.id);
void joinCall(id, call.call_secret, call.call_id);
}}
>
{displayCallId(call.id)}
{displayCallId(call.call_id)}
</SelectItem>
))}
</SelectContent>

View file

@ -50,11 +50,6 @@ export default function Screen(props: { children: React.ReactNode }) {
useEffect(() => {
let active = true;
setLoading(true);
setError("");
setErrorDescription("");
void (async () => {
try {
const id = await load("user_id");