miru/src/lib/components/ui/menubar/wrapper.svelte
ThaUnknown 8b88e23594
Some checks are pending
Check / check (push) Waiting to run
fix: oopsie
2025-06-14 21:33:43 +02:00

13 lines
260 B
Svelte

<script lang='ts'>
import { highEntropyValues } from '$lib/utils'
</script>
{#if highEntropyValues}
{#await highEntropyValues then { platform }}
<slot {platform} />
{:catch e}
<slot platform='' />
{/await}
{:else}
<slot platform='' />
{/if}