remove console messages

This commit is contained in:
smilerz
2022-02-16 10:58:05 -06:00
parent 501f56ffd5
commit 42a6f8457a

View File

@@ -212,7 +212,6 @@ export default {
apiClient apiClient
.createRecipe({ ...results.data, ...{ id: undefined, name: recipename } }) .createRecipe({ ...results.data, ...{ id: undefined, name: recipename } })
.then((newrecipe) => { .then((newrecipe) => {
console.log(newrecipe.data, this.resolveDjangoUrl("view_recipe", newrecipe.data.id))
StandardToasts.makeStandardToast(StandardToasts.SUCCESS_CREATE) StandardToasts.makeStandardToast(StandardToasts.SUCCESS_CREATE)
window.open(this.resolveDjangoUrl("view_recipe", newrecipe.data.id)) window.open(this.resolveDjangoUrl("view_recipe", newrecipe.data.id))
}) })