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

fix: remove console log

This commit is contained in:
Fredrik Oseberg 2022-01-19 15:26:17 +01:00
parent be5084401f
commit 0081a21ec1

View File

@ -215,7 +215,6 @@ export default class FeatureToggleStore implements IFeatureToggleStore {
project: string,
data: FeatureToggleDTO,
): Promise<FeatureToggle> {
console.log(data);
const row = await this.db(TABLE)
.where({ name: data.name })
.update(this.dtoToRow(project, data))