Skip to content

Commit 5b0877c

Browse files
fix: import/no-named-as-default warning (decaporg#7721)
* fix: `import/no-named-as-default` warning * chore: format --------- Co-authored-by: Martin Jagodic <jagodicmartin1@gmail.com>
1 parent f02d5df commit 5b0877c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/decap-cms-backend-bitbucket/src/git-lfs-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import minimatch from 'minimatch';
1+
import { minimatch } from 'minimatch';
22
import { unsentRequest } from 'decap-cms-lib-util';
33

44
import type { ApiRequest, PointerFile } from 'decap-cms-lib-util';

packages/decap-cms-backend-git-gateway/src/netlify-lfs-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { flow, fromPairs, map } from 'lodash/fp';
22
import isPlainObject from 'lodash/isPlainObject';
33
import isEmpty from 'lodash/isEmpty';
4-
import minimatch from 'minimatch';
4+
import { minimatch } from 'minimatch';
55
import { unsentRequest } from 'decap-cms-lib-util';
66

77
import type { ApiRequest, PointerFile } from 'decap-cms-lib-util';

0 commit comments

Comments
 (0)