Browse Source

fix(lib): reduce any types

pull/6404/head
Kenrick Tandrian 2 days ago
parent
commit
60dad72c2d
  1. 4
      libs/ui/src/lib/portfolio-filter-form/portfolio-filter-form.component.stories.ts

4
libs/ui/src/lib/portfolio-filter-form/portfolio-filter-form.component.stories.ts

@ -40,7 +40,7 @@ export const Default: Story = {
{ id: 'COMMODITY', label: 'Commodity', type: 'ASSET_CLASS' },
{ id: 'EQUITY', label: 'Equity', type: 'ASSET_CLASS' },
{ id: 'FIXED_INCOME', label: 'Fixed Income', type: 'ASSET_CLASS' }
] as any,
],
holdings: [
{
currency: 'USD',
@ -66,7 +66,7 @@ export const Default: Story = {
label: 'Retirement Fund',
type: 'TAG'
}
] as any,
],
disabled: false
}
};

Loading…
Cancel
Save