fix: linting errors

This commit is contained in:
Huskydog9988
2025-05-08 19:26:46 -04:00
committed by DecDuck
parent 52a7de0a8b
commit 7f7d8c8f45
4 changed files with 8 additions and 13 deletions

View File

@ -1,8 +1,5 @@
<template>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path
fill="currentColor"
d="M9.41 20H6.5c-1.5 0-2.82-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48a5.25 5.25 0 0 1 3.08-1.95c.42-1.53 1.25-2.77 2.5-3.72C9 4.5 10.42 4 12 4c1.95 0 3.61.68 4.96 2.04C18.32 7.39 19 9.05 19 11c1.15.13 2.11.63 2.86 1.5c.64.73 1 1.56 1.1 2.5H18a5.01 5.01 0 0 0-4-2c-2.8 0-5 2.2-5 5c0 .72.15 1.39.41 2M23 17v2h-2v2h-2v-2h-2.2c-.4 1.2-1.5 2-2.8 2c-1.7 0-3-1.3-3-3s1.3-3 3-3c1.3 0 2.4.8 2.8 2zm-8 1c0-.5-.4-1-1-1s-1 .5-1 1s.4 1 1 1s1-.5 1-1"

View File

@ -183,11 +183,7 @@
</template>
<script setup lang="ts">
import {
BellIcon,
UserGroupIcon,
ArrowDownTrayIcon,
} from "@heroicons/vue/16/solid";
import { BellIcon, UserGroupIcon } from "@heroicons/vue/16/solid";
import {
Dialog,
DialogPanel,

View File

@ -8,8 +8,10 @@ export default defineEventHandler(async (h3) => {
const authData = {
[AuthMec.Simple]: enabledAuthManagers.Simple,
[AuthMec.OpenID]: enabledAuthManagers.OpenID && enabledAuthManagers.OpenID.generateConfiguration(),
}
[AuthMec.OpenID]:
enabledAuthManagers.OpenID &&
enabledAuthManagers.OpenID.generateConfiguration(),
};
return authData;
});