Fix TypeScript errors in Login.tsx and UnifiedAgents.tsx

This commit is contained in:
rcourtman 2025-11-28 20:16:31 +00:00
parent f5f88faac5
commit 4de209b8a1
2 changed files with 2 additions and 2 deletions

View file

@ -443,7 +443,7 @@ const LoginForm: Component<{
{oidcMessage()}
</div>
</Show>
<Show when={showLocalLogin()}>
<Show when={showLocalLogin}>
<div class="flex items-center gap-3 pt-2">
<span class="flex-1 h-px bg-gray-200 dark:bg-gray-700" />
<span class="text-xs uppercase tracking-wide text-gray-400 dark:text-gray-500">

View file

@ -6,7 +6,7 @@ import { MonitoringAPI } from '@/api/monitoring';
import { SecurityAPI } from '@/api/security';
import { notificationStore } from '@/stores/notifications';
import type { SecurityStatus } from '@/types/config';
import type { HostLookupResponse, RemovedDockerHost } from '@/types/api';
import type { HostLookupResponse } from '@/types/api';
import type { APITokenRecord } from '@/api/security';
import { HOST_AGENT_SCOPE, DOCKER_REPORT_SCOPE } from '@/constants/apiScopes';
import { copyToClipboard } from '@/utils/clipboard';