Skip to content

Commit

Permalink
chore: remove unused colorscheme
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrobruneli authored Oct 2, 2023
1 parent aab644c commit 4c42def
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions apps/web/src/pages/settings/tabs/ApiKeysCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { getApiKeys } from '../../../api/environment';
import { inputStyles } from '../../../design-system/config/inputs.styles';
import { useEnvController } from '../../../hooks';
import { Regenerate } from './components/Regenerate';
import { useMantineTheme } from '@mantine/core';
import { When } from '../../../components/utils/When';
import { EyeInvisibleOutlined, EyeOutlined } from '@ant-design/icons';
import { useState } from 'react';
Expand All @@ -26,7 +25,6 @@ export const ApiKeysCard = () => {
const environmentIdentifier = environment?.identifier ? environment.identifier : '';
const environmentId = environment?._id ? environment._id : '';

const { colorScheme } = useMantineTheme();
const [hidden, setHidden] = useState(true);

return (
Expand Down

0 comments on commit 4c42def

Please sign in to comment.