1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-19 00:15:43 +01:00

fix: remove unused import

This commit is contained in:
Fredrik Oseberg 2022-01-07 11:06:45 +01:00 committed by Ivar Conradi Østhus
parent ef8041d315
commit 87268021ec
No known key found for this signature in database
GPG Key ID: 31AC596886B0BD09

View File

@ -5,10 +5,7 @@ import { IUnleashConfig } from '../../../types/option';
import { IUnleashServices } from '../../../types';
import { Request, Response } from 'express';
import { Operation } from 'fast-json-patch';
import {
UPDATE_FEATURE,
UPDATE_FEATURE_VARIANTS,
} from '../../../types/permissions';
import { UPDATE_FEATURE_VARIANTS } from '../../../types/permissions';
import { IVariant } from '../../../types/model';
import { extractUsername } from '../../../util/extract-user';
import { IAuthRequest } from '../../unleash-types';