Skip to content

Commit

Permalink
fix: disable bridge prioritization
Browse files Browse the repository at this point in the history
  • Loading branch information
chybisov committed Feb 18, 2022
1 parent 833cfa9 commit aea18ea
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
import { HelpOutline as HelpOutlineIcon } from '@mui/icons-material';
import { Box, FormControl, MenuItem, Typography } from '@mui/material';
import { Box, Typography } from '@mui/material';
import { ChangeEvent, useState } from 'react';
import { useFormContext } from 'react-hook-form';
import { useTranslation } from 'react-i18next';
import { SwapFormKey } from '../../providers/SwapFormProvider';
import { Select } from '../Select';
import { Switch } from '../Switch';
import { EnabledBridgesSelect } from './EnabledBridgesSelect';
import { EnabledExchangesSelect } from './EnabledExchangesSelect';
Expand Down Expand Up @@ -48,7 +45,7 @@ export const AdvancedPreferences = () => {
</Box>
{advancedPreferences && (
<Box mt={3} mb={1}>
<Box sx={{ display: 'flex', alignItems: 'center' }} mb={1}>
{/* <Box sx={{ display: 'flex', alignItems: 'center' }} mb={1}>
<HelpOutlineIcon sx={{ color: 'grey.500' }} />
<Typography
variant="subtitle1"
Expand All @@ -71,7 +68,7 @@ export const AdvancedPreferences = () => {
{t(`settings.routePriority.recommended`)}
</MenuItem>
</Select>
</FormControl>
</FormControl> */}
<EnabledBridgesSelect />
<EnabledExchangesSelect />
</Box>
Expand Down

0 comments on commit aea18ea

Please sign in to comment.