Skip to content

Commit 73f88e7

Browse files
🤖 Apply formatting changes
1 parent d451c17 commit 73f88e7

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

src/frontend/src/lib/components/earning/AllEarningOpportunityCardList.svelte

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@
1111
{#if provider.type === 'reward'}
1212
<RewardsEarningOpportunityCard card={provider.card} />
1313
{:else if nonNullish($earningData[provider.id])}
14-
<DefaultEarningOpportunityCard cardData={provider.card} cardFields={$earningData[provider.id]} />
14+
<DefaultEarningOpportunityCard
15+
cardData={provider.card}
16+
cardFields={$earningData[provider.id]}
17+
/>
1518
{/if}
1619
{/each}
1720
</div>

src/frontend/src/lib/types/stake.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import type { WizardStep } from '@dfinity/gix-components';
2-
import type { Component } from 'svelte';
31
import type { EarningCardData } from '$lib/types/earning';
42
import type { Amount, OptionAmount } from '$lib/types/send';
53
import type { Token } from '$lib/types/token';
64
import type { Vault } from '$lib/types/vaults';
5+
import type { WizardStep } from '@dfinity/gix-components';
6+
import type { Component } from 'svelte';
77

88
export enum StakeProvider {
99
HARVEST_AUTOPILOTS = 'harvest_autopilots'

0 commit comments

Comments
 (0)