Skip to content

Commit c46edd4

Browse files
committed
fix: invalid import
1 parent 6d55566 commit c46edd4

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/services/notification/Notification.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import {
44
isExist,
55
isString,
66
isPromiseSupported,
7-
assign,
87
hasOwnProperty,
98
} from '../../utils/object.utils'
109
import Notification from '../../components/notification/Notification.vue'
@@ -83,11 +82,7 @@ function _notify2(type, args) {
8382
type,
8483
})
8584
} else {
86-
_notify(
87-
assign({}, args, {
88-
type,
89-
})
90-
)
85+
_notify({ ...args, type })
9186
}
9287
}
9388

0 commit comments

Comments
 (0)