[#32] changed how userinfo is filled

This commit is contained in:
Camille Moussu
2025-08-20 10:14:47 +02:00
parent 6f43b560c4
commit 5e410124cc
+1 -1
View File
@@ -1,6 +1,6 @@
import { api } from "../../utils/apiUtils";
export default async function getOpenPaasUser() {
export async function getOpenPaasUser() {
const user = await api.get(`api/user`).json();
return user;
}