Skip to content

Commit

Permalink
Fix type warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mstrasinskis committed Aug 16, 2024
1 parent 7e1cf6b commit f9011dd
Showing 1 changed file with 7 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,15 @@
</svelte:fragment>

<div class="content">
<svelte:fragment slot="start">
{#if nonNullish(universe)}
<UniversePageSummary {universe}>
<Tag slot="tags" testId="imported-token-tag"
>{$i18n.import_token.imported_token}</Tag
>
</UniversePageSummary>
{/if}
</svelte:fragment>
{#if nonNullish(universe)}
<UniversePageSummary {universe}>
<Tag slot="tags" testId="imported-token-tag"
>{$i18n.import_token.imported_token}</Tag
>
</UniversePageSummary>
{/if}
<p><Html text={$i18n.import_token.remove_confirmation_description} /></p>
</div>

<div class="toolbar">
<button
class="secondary"
Expand Down

0 comments on commit f9011dd

Please sign in to comment.