Unverified Commit e5cb02fd authored by Nicolò Maria Mezzopera's avatar Nicolò Maria Mezzopera Committed by GitHub
Browse files

Update src/utils.js

parent 07eda069
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -75,7 +75,7 @@ export const generateMethodsPlaceholder = (methods) => {
  const base = reactive({});
  return methods.reduce((acc, curr) => {
    acc[curr] = () =>
      console.warn("This method has been invoked without being replaced ");
      console.warn(`Method ${curr} has been invoked without being replaced`);
    return acc;
  }, base);
};