remove old User File from repo #128

Merged
PxlLoewe merged 4 commits from staging into release 2025-07-28 03:34:45 +00:00
2 changed files with 4 additions and 2 deletions
Showing only changes of commit 157d2f02e1 - 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 && !chats[a.userId],
);
const btnActive = pilotConnected || dispatcherConnected;

View File

@@ -40,9 +40,11 @@ export const NewReportForm = ({
defaultValues: {
reportedUserId: defaultValues?.reportedUserId || "",
senderUserId: session.data?.user.id || "",
reviewerComment: null,
reviewerUserId: null,
},
});
console.log(form.formState.errors);
return (
<form
className="flex flex-wrap gap-3"