Skip to content

Commit

Permalink
fix: fix linting for copyfeature (#5138)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjaanus authored Oct 24, 2023
1 parent b47dbd3 commit 604c19c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions frontend/src/component/feature/CopyFeature/CopyFeature.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,7 @@ export const CopyFeatureToggle = () => {
const [apiError, setApiError] = useState('');
const [nameError, setNameError] = useState<string | undefined>();
const [newToggleName, setNewToggleName] = useState<string>();
const {
cloneFeatureToggle,
validateFeatureToggleName,
} = useFeatureApi();
const { cloneFeatureToggle, validateFeatureToggleName } = useFeatureApi();
const featureId = useRequiredPathParam('featureId');
const projectId = useRequiredPathParam('projectId');
const { feature } = useFeature(projectId, featureId);
Expand Down

0 comments on commit 604c19c

Please sign in to comment.