fix: last eslint errors

This commit is contained in:
Huskydog9988
2025-04-15 21:43:27 -04:00
parent 8e109dd562
commit d361e01eef
14 changed files with 42 additions and 49 deletions

View File

@ -94,6 +94,7 @@
import { CheckIcon } from "@heroicons/vue/24/outline";
import { DateTime } from "luxon";
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore pending https://github.com/nitrojs/nitro/issues/2758
const clients = ref(await $dropFetch("/api/v1/user/client"));
@ -114,7 +115,7 @@ function revokeClientWrapper(id: string) {
title: "Failed to revoke client",
description: `Failed to revoke client: ${e}`,
},
(_, c) => c()
(_, c) => c(),
);
});
}