hide cred check (#7736)

This commit is contained in:
centdix
2026-01-29 13:01:29 +01:00
committed by GitHub
parent 8bb6b6331b
commit 1aad20b7eb
@@ -14,6 +14,7 @@
import { base } from '$lib/base'
import GitHubAppIntegration from './GitHubAppIntegration.svelte'
import BedrockCredentialsCheck from './BedrockCredentialsCheck.svelte'
import { isCloudHosted } from '$lib/cloud'
interface Props {
resourceType: string
@@ -211,7 +212,7 @@
onDescriptionUpdate={(newDescription) => (description = newDescription)}
/>
</div>
{#if resourceType?.includes('bedrock')}
{#if resourceType?.includes('bedrock') && !isCloudHosted()}
<BedrockCredentialsCheck />
{/if}
{:else}