feat: show slightly more information in event list view

instead of event title and organizer, we now also show place and date
This commit is contained in:
2025-06-02 00:37:47 +02:00
parent 42fd94e5ac
commit 271bf84467
4 changed files with 21 additions and 9 deletions

View File

@@ -36,7 +36,7 @@ export async function getEvent(id: string): Promise<EventData> {
export async function getMyAccount(): Promise<MyAccount> {
const res = await fetch("/api/auth/my_account");
if (!res.ok) {
throw Error("U<EFBFBD>ytkownik niezalogowany!");
throw Error("Użytkownik niezalogowany!");
}
const data = await res.json();
return data;