Browse Source

fix(lib): reduce any types

pull/6404/head
Kenrick Tandrian 3 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: 'COMMODITY', label: 'Commodity', type: 'ASSET_CLASS' },
{ id: 'EQUITY', label: 'Equity', type: 'ASSET_CLASS' }, { id: 'EQUITY', label: 'Equity', type: 'ASSET_CLASS' },
{ id: 'FIXED_INCOME', label: 'Fixed Income', type: 'ASSET_CLASS' } { id: 'FIXED_INCOME', label: 'Fixed Income', type: 'ASSET_CLASS' }
] as any, ],
holdings: [ holdings: [
{ {
currency: 'USD', currency: 'USD',
@ -66,7 +66,7 @@ export const Default: Story = {
label: 'Retirement Fund', label: 'Retirement Fund',
type: 'TAG' type: 'TAG'
} }
] as any, ],
disabled: false disabled: false
} }
}; };

Loading…
Cancel
Save