minor improvements

This commit is contained in:
2024-12-22 19:45:46 -08:00
parent 3909281bc7
commit 5e3772d39b
6 changed files with 4 additions and 8 deletions

View File

@@ -26,7 +26,6 @@ export const GET: RequestHandler = async (event) => {
'type': ['peer'],
}),
};
console.log('Fetching peers from OPNsense WireGuard API: ', apiUrl, options)
const res = await fetch(apiUrl, options);
const peers = await res.json() as OpnsenseWgPeers;