Updated references of moved things

This commit is contained in:
2025-12-14 12:19:16 -05:00
parent 359fcbb412
commit af984cddbd
8 changed files with 21 additions and 16 deletions

View File

@@ -43,6 +43,7 @@ export async function getMyLOA(): Promise<LOARequest | null> {
headers: {
"Content-Type": "application/json",
},
credentials: 'include',
});
@@ -63,6 +64,7 @@ export function getAllLOAs(): Promise<LOARequest[]> {
headers: {
"Content-Type": "application/json",
},
credentials: 'include',
}).then((res) => {
if (res.ok) {
return res.json();