mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 05:30:13 +01:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user