Skip to content

Commit b109b70

Browse files
committed
fix: use new serialize-error imports
The serialize-error package now uses named exports.
1 parent f229ed8 commit b109b70

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/auth-module/auth-module.mutations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ eslint
33
@typescript-eslint/explicit-function-return-type: 0,
44
@typescript-eslint/no-explicit-any: 0
55
*/
6-
import serializeError from 'serialize-error'
6+
import { serializeError } from 'serialize-error'
77

88
export default function makeAuthMutations() {
99
return {

src/service-module/service-module.mutations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ eslint
44
@typescript-eslint/no-explicit-any: 0
55
*/
66
import Vue from 'vue'
7-
import serializeError from 'serialize-error'
7+
import { serializeError } from 'serialize-error'
88
import {
99
updateOriginal,
1010
mergeWithAccessors,

0 commit comments

Comments
 (0)