Rebase Staging branch with latest release branch #138

Merged
PxlLoewe merged 25 commits from release into staging 2025-11-08 09:38:57 +00:00
Showing only changes of commit f0dfe91a00 - Show all commits

View File

@@ -56,7 +56,7 @@ export const Chat = () => {
(d) => d.userId !== session.data?.user.id && !chats[d.userId],
);
const filteredAircrafts = aircrafts?.filter(
(a) => a.userId !== session.data?.user.id && dispatcherConnected && chats[a.userId],
(a) => a.userId !== session.data?.user.id && dispatcherConnected && !chats[a.userId],
);
const btnActive = pilotConnected || dispatcherConnected;