Skip to content

Commit

Permalink
Merge pull request #1086 from basics/feature/fix-invalid-import
Browse files Browse the repository at this point in the history
fix(hydrate): fix invalid import
  • Loading branch information
ThornWalli authored Aug 13, 2024
2 parents 8805efa + 924294a commit 8e43c9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/utils/deprecation.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default function obsolete(newFunction, message) {
export function obsolete(newFunction, message) {
const wrapper = (...args) => {
console.warn(message);
return newFunction.apply(this, args);
Expand Down

0 comments on commit 8e43c9d

Please sign in to comment.