Skip to content

Commit

Permalink
feat: add base
Browse files Browse the repository at this point in the history
  • Loading branch information
w84april committed Nov 22, 2024
1 parent 98b7fd8 commit 09bc1a5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/vaults-v3/components/Filters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ export function Filters({
}: TListHero): ReactElement {
const [shouldExpandFilters, set_shouldExpandFilters] = useState(false);
const chainOptions = useChainOptions(chains).filter(
(option): boolean => option.value === 1 || option.value === 137 || option.value === 42161
(option): boolean =>
option.value === 1 || option.value === 137 || option.value === 42161 || option.value === 8453
);
const typeOptions = useMemo((): TMultiSelectOptionProps[] => {
const options: TMultiSelectOptionProps[] = Object.entries(ALL_VAULTSV3_KINDS).map(
Expand Down

0 comments on commit 09bc1a5

Please sign in to comment.