Remove unused path constant

This commit is contained in:
2026-03-31 03:26:00 -04:00
parent e3af1e4f37
commit b8e320fa01
3 changed files with 3 additions and 3 deletions

View File

@@ -31,7 +31,7 @@ export async function onRequestPost(context: RequestContext) {
)
.run();
const { etag, path, value: banList } = await getBanList(context);
const { etag, value: banList } = await getBanList(context);
delete banList[user];
await setBanList(context, banList, etag);