Skip to content

Commit

Permalink
Organize imports
Browse files Browse the repository at this point in the history
  • Loading branch information
camilovegag committed Feb 8, 2024
1 parent 0f91de2 commit 5a44fb7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/berlin/src/pages/Account.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@ import { FlexColumn } from '../components/containers/FlexColum.styled';
import { FlexRow } from '../components/containers/FlexRow.styled';
import { Title } from '../components/typography/Title.styled';
import Button from '../components/button';
import Checkbox from '../components/checkbox';
import IconButton from '../components/iconButton';
import Input from '../components/input';
import Label from '../components/typography/Label';
import Select from '../components/select';
import Textarea from '../components/textarea';

Check failure on line 26 in packages/berlin/src/pages/Account.tsx

View workflow job for this annotation

GitHub Actions / Check linting

'Textarea' is defined but never used. Allowed unused vars must match /^_ignored/u

// Hooks
import useUser from '../hooks/useUser';
Expand All @@ -34,7 +36,6 @@ import { formatGroups } from '../utils/formatGroups';

// Store
import { useAppStore } from '../store';
import Checkbox from '../components/checkbox';

const ACADEMIC_CREDENTIALS = ['Bachelors', 'Masters', 'PhD', 'JD', 'None'];

Expand Down

0 comments on commit 5a44fb7

Please sign in to comment.