chore: ran linting

This commit is contained in:
Anish Sarkar 2026-05-09 05:16:20 +05:30
parent 2f540ee065
commit dbf575fbd0
23 changed files with 89 additions and 96 deletions

View file

@ -18,9 +18,7 @@ export async function createSearchSpace(
data: { name, description },
});
if (!response.ok()) {
throw new Error(
`createSearchSpace failed (${response.status()}): ${await response.text()}`
);
throw new Error(`createSearchSpace failed (${response.status()}): ${await response.text()}`);
}
return (await response.json()) as SearchSpaceRow;
}