Briefer syntax

This commit is contained in:
David Baker 2023-07-03 17:10:36 +01:00
parent edcf9f3fd5
commit 5305a287fe

View File

@ -50,7 +50,5 @@ export async function getSFUConfigWithOpenID(
if (!res.ok) {
throw new Error("SFO Config fetch failed with status code " + res.status);
}
const sfuConfig = await res.json();
return sfuConfig;
return await res.json();
}