chore: format repo and fix lint config

This commit is contained in:
Yahya Alhinai
2026-06-28 00:09:48 +00:00
parent 1294b8428d
commit b1b0761973
23 changed files with 198 additions and 104 deletions
+2 -11
View File
@@ -192,20 +192,11 @@ export default function App() {
</header>
{joinedPod ? (
<PodView
team={joinedPod}
me={member}
room={room}
devMode={devMode}
onLeave={handleLeave}
/>
<PodView team={joinedPod} me={member} room={room} devMode={devMode} onLeave={handleLeave} />
) : showReconnecting ? (
<div className="flex flex-col items-start gap-3">
<p className="text-sm text-slate-400">Reconnecting to your pod</p>
<button
className="text-xs text-slate-500 hover:text-slate-300"
onClick={handleLeave}
>
<button className="text-xs text-slate-500 hover:text-slate-300" onClick={handleLeave}>
Cancel
</button>
</div>