[#32] changed how userinfo is filled

This commit is contained in:
Camille Moussu
2025-08-20 10:14:47 +02:00
committed by Benoit TELLIER
parent 290c7f301b
commit b9d2a16984
4 changed files with 23 additions and 13 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
import { api } from "../../utils/apiUtils";
export default async function getOpenPaasUserId() {
export default async function getOpenPaasUser() {
const user = await api.get(`api/user`).json();
return user;
}