Skip to content

Commit

Permalink
feat: add base (#611)
Browse files Browse the repository at this point in the history
Co-authored-by: Major <[email protected]>
  • Loading branch information
w84april and Majorfi authored Dec 17, 2024
1 parent 673317a commit b08fdf7
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 b08fdf7

Please sign in to comment.