Skip to content

Commit

Permalink
Organize imports
Browse files Browse the repository at this point in the history
  • Loading branch information
MrBartusek committed Apr 25, 2024
1 parent e848143 commit b96fd60
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions apps/client/src/components/User/UserApiKeyForm.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
import { useContext, useState } from 'react';
import toast from 'react-hot-toast';
import { BsClipboard2, BsEye, BsEyeSlash } from 'react-icons/bs';
import { UserContext } from '../../context/UserContext';
import useApiKey from '../../hooks/useApiKey';
import ActionButton from '../ActionButton';
import Form from '../Form/Form';
import FormField from '../Form/FormField';
import FormInput from '../Form/FormInput';
import RegenerateApiKeyButton from '../RegenerateApiKeyButton';
import useUser from '../../hooks/useUser';
import { UserContext } from '../../context/UserContext';
import Alert from '../Helpers/Alert';
import RegenerateApiKeyButton from '../RegenerateApiKeyButton';

function UserApiKeyForm() {
const { apiKey, error } = useApiKey();
Expand Down

0 comments on commit b96fd60

Please sign in to comment.