fix: app.route overload

This commit is contained in:
PrimarchPaul
2025-09-27 04:15:51 -04:00
parent b1ff9973f4
commit f71e639d49
5 changed files with 117 additions and 16 deletions

View File

@@ -0,0 +1,6 @@
import { getUserInformation } from "../services/actions";
export async function fetchUserData(id: string) {
return await getUserInformation(id);
}