Skip to content

Commit

Permalink
fix: import icons directly
Browse files Browse the repository at this point in the history
  • Loading branch information
paulschreiber committed Oct 24, 2023
1 parent 41f24e8 commit 35c16eb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/account/components/AccountLogin.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ import { Trans, useTranslation } from 'react-i18next';
import { useSelector } from 'react-redux';
import { useNavigate, useSearchParams } from 'react-router-dom';
import { fetchAuthURLs } from 'terraso-client-shared/account/accountSlice';
import { GoogleSvg, MicrosoftSvg } from 'terraso-client-shared/icons';
import { ReactComponent as GoogleSvg } from 'terraso-client-shared/assets/google.svg';
import { ReactComponent as MicrosoftSvg } from 'terraso-client-shared/assets/microsoft.svg';
import { useFetchData } from 'terraso-client-shared/store/utils';
import AppleIcon from '@mui/icons-material/Apple';
import { Box, Button, Stack, Typography } from '@mui/material';
Expand Down

0 comments on commit 35c16eb

Please sign in to comment.