remove unecessary check

This commit is contained in:
Ruben Fiszel
2023-10-25 09:57:42 +02:00
parent 402193cef9
commit c24e7f3c59

View File

@@ -137,17 +137,15 @@
/>
{/each}
{#each Object.keys(css ?? {}) as key (key + 'css')}
{#if css}
<ResolveStyle
{id}
{customCss}
{extraKey}
{key}
bind:css={css[key]}
componentStyle={$app.css?.buttoncomponent}
/>
{/if}
{#each Object.keys(css ?? {}) as key (key)}
<ResolveStyle
{id}
{customCss}
{extraKey}
{key}
bind:css={css[key]}
componentStyle={$app.css?.buttoncomponent}
/>
{/each}
<!-- gotoNewTab={resolvedConfig.onSuccess.selected == 'goto'} -->