const groupResponse = await fetch(`${baseUrl}/groups`);
//Handle errors
if (!groupResponse.ok) {
throw new TRPCError({
message: "Failed to fetch groups",
code: "BAD_REQUEST",
});
}
const json = await groupResponse.json();
console.log(json);
const groupResponse = await fetch(`${baseUrl}/groups`);
//Handle errors
if (!groupResponse.ok) {
throw new TRPCError({
message: "Failed to fetch groups",
code: "BAD_REQUEST",
});
}
const json = await groupResponse.json();
console.log(json);