feat: initial client side searching for resources
All checks were successful
Deploy to SFTP Server / build (push) Successful in 14m30s

This commit is contained in:
Max Richter
2025-10-27 00:04:02 +01:00
parent 207d5998da
commit 3263ab9123
11 changed files with 162 additions and 60 deletions

View File

@@ -27,6 +27,7 @@ export async function listResource(
id: string,
): Promise<MemoriumEntry | undefined> {
const url = `${SERVER_URL}/resources/${id}`;
console.log(url);
try {
const response = await fetch(url, { signal: AbortSignal.timeout(5000) });
if (response.ok) {